Skip to content

Commit

Permalink
Upgrade to Gradle 8.8 and Java 17 (#382)
Browse files Browse the repository at this point in the history
* Upgrade to Gradle 8

* Upgrade to Gradle 8

* Upgrade to Gradle 8

* Upgrade java
  • Loading branch information
blockvote authored Jun 3, 2024
1 parent 4da662e commit 7126439
Show file tree
Hide file tree
Showing 14 changed files with 409 additions and 299 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
2 changes: 1 addition & 1 deletion router-openapi-request-validator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ repositories {
}

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

api("com.atlassian.oai:swagger-request-validator-core:2.40.0")
Expand Down
2 changes: 1 addition & 1 deletion router-protobuf/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
}

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

implementation("org.slf4j:slf4j-api:2.0.13")
Expand Down
2 changes: 1 addition & 1 deletion router/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(kotlin("stdlib"))
implementation(kotlin("reflect"))
api("com.amazonaws:aws-lambda-java-core:1.2.3")
api("com.amazonaws:aws-lambda-java-events:3.11.5")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ plugins {
idea
id("com.github.johnrengelman.shadow") version "8.1.1"
id("org.jmailen.kotlinter") version "4.3.0"
id("com.google.protobuf") version "0.8.7"
id("com.google.protobuf") version "0.8.13"
}


Expand All @@ -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 All @@ -52,7 +52,7 @@ dependencies {

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

withType<Test> {
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 7126439

Please sign in to comment.