Skip to content

Commit

Permalink
Upgrade to Gradle 8
Browse files Browse the repository at this point in the history
  • Loading branch information
blockvote committed Jun 3, 2024
1 parent ef52d8f commit 4631535
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ repositories {
}

dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(kotlin("stdlib"))
implementation(kotlin("reflect"))
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ repositories {

val proto = "3.11.1"
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(kotlin("stdlib"))
implementation(kotlin("reflect"))

implementation("io.moia.lambda-kotlin-request-router:router-protobuf:0.10.2")
Expand Down
4 changes: 2 additions & 2 deletions samples/lambda-kotlin-request-router-sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ repositories {
}

dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(kotlin("stdlib"))
implementation(kotlin("reflect"))

implementation("io.moia.lambda-kotlin-request-router:router:0.10.2")
Expand All @@ -49,7 +49,7 @@ dependencies {

tasks {
withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.jvmTarget = "17"
}

withType<Test> {
Expand Down

0 comments on commit 4631535

Please sign in to comment.