Skip to content

Commit effc868

Browse files
committed
try
1 parent a8d7a3d commit effc868

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

smoke-tests/images/quarkus/build.gradle.kts

-14
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,12 @@ dependencies {
2020
implementation("io.quarkus:quarkus-resteasy")
2121
}
2222

23-
quarkus {
24-
// Expected by jib extension.
25-
// TODO(anuraaga): Switch to quarkus plugin native jib support.
26-
setFinalName("opentelemetry-quarkus-$version")
27-
}
28-
2923
// Quarkus 3.7+ requires Java 17+
3024
val targetJDK = project.findProperty("targetJDK") ?: "17"
3125

3226
val tag = findProperty("tag")
3327
?: DateTimeFormatter.ofPattern("yyyyMMdd.HHmmSS").format(LocalDateTime.now())
3428

35-
java {
36-
// this is needed to avoid jib failing with
37-
// "Your project is using Java 17 but the base image is for Java 8"
38-
// (it seems the jib plugins does not understand toolchains yet)
39-
sourceCompatibility = JavaVersion.VERSION_1_8
40-
targetCompatibility = JavaVersion.VERSION_1_8
41-
}
42-
4329
jib {
4430
from.image = "eclipse-temurin:$targetJDK"
4531
to.image = "ghcr.io/open-telemetry/opentelemetry-java-instrumentation/smoke-test-quarkus:jdk$targetJDK-$tag"

0 commit comments

Comments
 (0)