File tree 4 files changed +9
-9
lines changed
smoke-tests/images/quarkus
4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 15
15
with :
16
16
project : " :smoke-tests:images:quarkus"
17
17
cache-read-only : true
18
- # Quarkus 2.0+ does not support Java 8
18
+ # Quarkus 3.7+ requires Java 17+
19
19
skip-java-8 : true
20
+ skip-java-11 : true
Original file line number Diff line number Diff line change 15
15
with :
16
16
project : " :smoke-tests:images:quarkus"
17
17
publish : true
18
- # Quarkus 2.0+ does not support Java 8
18
+ # Quarkus 3.7+ requires Java 17+
19
19
skip-java-8 : true
20
+ skip-java-11 : true
20
21
21
22
workflow-notification :
22
23
needs :
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ plugins {
17
17
18
18
dependencies {
19
19
implementation(enforcedPlatform(" io.quarkus:quarkus-bom:3.15.1" ))
20
- implementation(" io.quarkus:quarkus-resteasy " )
20
+ implementation(" io.quarkus:quarkus-rest " )
21
21
}
22
22
23
23
quarkus {
@@ -26,7 +26,8 @@ quarkus {
26
26
setFinalName(" opentelemetry-quarkus-$version " )
27
27
}
28
28
29
- val targetJDK = project.findProperty(" targetJDK" ) ? : " 11"
29
+ // Quarkus 3.7+ requires Java 17+
30
+ val targetJDK = project.findProperty(" targetJDK" ) ? : " 17"
30
31
31
32
val tag = findProperty(" tag" )
32
33
? : DateTimeFormatter .ofPattern(" yyyyMMdd.HHmmSS" ).format(LocalDateTime .now())
55
56
tasks {
56
57
withType<JavaCompile >().configureEach {
57
58
with (options) {
58
- // Quarkus 2.0+ does not support Java 8
59
- release.set(11 )
59
+ // Quarkus 3.7+ requires Java 17+
60
+ release.set(17 )
60
61
}
61
62
}
62
63
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments