File tree Expand file tree Collapse file tree 1 file changed +8
-15
lines changed
smoke-tests/images/quarkus Expand file tree Collapse file tree 1 file changed +8
-15
lines changed Original file line number Diff line number Diff line change @@ -9,14 +9,19 @@ buildscript {
99}
1010
1111plugins {
12- id(" otel.java-conventions" )
12+ // otel.java-conventions isn't applied to this module because it adds
13+ // platform(project(":dependencyManagement")) which conflicts with
14+ // Quarkus's dependency resolution logic, causing infinite recursion in
15+ // GradleApplicationModelBuilder.collectDependencies during the configuration phase
16+ // resulting in StackOverflowError
17+ id(" java" )
1318
1419 id(" com.google.cloud.tools.jib" )
15- id(" io.quarkus" ) version " 3.25.0 "
20+ id(" io.quarkus" ) version " 3.29.3 "
1621}
1722
1823dependencies {
19- implementation(enforcedPlatform(" io.quarkus:quarkus-bom:3.26.0 " ))
24+ implementation(enforcedPlatform(" io.quarkus:quarkus-bom:3.29.3 " ))
2025 implementation(" io.quarkus:quarkus-rest" )
2126}
2227
@@ -65,16 +70,4 @@ tasks {
6570 compileJava {
6671 dependsOn(compileQuarkusGeneratedSourcesJava)
6772 }
68-
69- sourcesJar {
70- dependsOn(quarkusGenerateCode, compileQuarkusGeneratedSourcesJava)
71- }
72-
73- javadoc {
74- dependsOn(compileQuarkusGeneratedSourcesJava)
75- }
76-
77- checkstyleMain {
78- dependsOn(compileQuarkusGeneratedSourcesJava)
79- }
8073}
You can’t perform that action at this time.
0 commit comments