We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92eea46 commit 2de4488Copy full SHA for 2de4488
smoke-tests/images/quarkus/build.gradle.kts
@@ -9,9 +9,13 @@ buildscript {
9
}
10
11
plugins {
12
- // Don't apply otel.java-conventions since the shared dependency platform
13
- // conflicts somehow with Quarkus dependency resolution, causing StackOverflow
+ // otel.java-conventions isn't applied to this module because it adds
+ // 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")
18
+
19
id("com.google.cloud.tools.jib")
20
id("io.quarkus") version "3.29.3"
21
0 commit comments