Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update gradle to support Java 21 #10513

Merged
merged 15 commits into from
Dec 21, 2023
Prev Previous commit
Next Next commit
Update kts
Signed-off-by: Jeffrey Tang <jeffrey@swirldslabs.com>
Signed-off-by: Nathan Klick <nathan@swirldslabs.com>
  • Loading branch information
JeffreyDallas authored and nathanklick committed Dec 20, 2023
commit 83577525ab2656e65252e4975de274bc5ee4f7f9
2 changes: 1 addition & 1 deletion hedera-dependency-versions/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ val grpcVersion = "1.54.1"
val helidonVersion = "3.2.1"
val jacksonVersion = "2.16.0"
val log4jVersion = "2.21.1"
val mockitoVersion = "5.8.0"
val mockitoVersion = "4.11.0"
val nettyVersion = "4.1.87.Final"
val prometheusVersion = "0.16.0"
val protobufVersion = "3.21.7"
Expand Down
6 changes: 5 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@

pluginManagement { includeBuild("build-logic") }

plugins { id("com.hedera.hashgraph.settings") }
plugins {
id("com.hedera.hashgraph.settings")
id("org.gradle.toolchains.foojay-resolver-convention") version("0.4.0")

}

// "BOM" with versions of 3rd party dependencies
include("hedera-dependency-versions")
Expand Down