Skip to content

Commit

Permalink
Support JDK 21
Browse files Browse the repository at this point in the history
  • Loading branch information
sohyun-ku committed Nov 14, 2023
1 parent 87b138e commit e944d38
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scavenger-agent-java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ repositories {

dependencies {
implementation(project(":scavenger-model"))
implementation("net.bytebuddy:byte-buddy:1.12.23")
implementation("org.ow2.asm:asm:9.4")
implementation("org.ow2.asm:asm-tree:9.4")
implementation("net.bytebuddy:byte-buddy:1.14.3")
implementation("org.ow2.asm:asm:9.5")
implementation("org.ow2.asm:asm-tree:9.5")
implementation("com.squareup.okhttp3:okhttp:3.14.9")
implementation("com.google.protobuf:protobuf-java-util:${property("protobufVersion")}")
implementation("io.grpc:grpc-stub:${property("grpcVersion")}")
Expand Down Expand Up @@ -107,7 +107,7 @@ tasks.named<Test>("integrationTest") {

systemProperty("integrationTest.scavengerAgent", tasks.shadowJar.get().outputs.files.asPath)
systemProperty("integrationTest.classpath", "build/classes/java/integrationTest:$integrationTestRuntimeClasspath")
systemProperty("integrationTest.javaPaths", javaPaths(8, 11, 17))
systemProperty("integrationTest.javaPaths", javaPaths(8, 11, 17, 21))
}

tasks.withType<ProcessResources> {
Expand Down

0 comments on commit e944d38

Please sign in to comment.