Skip to content

Commit 92eea46

Browse files
committed
fix?
1 parent 885e4a3 commit 92eea46

File tree

1 file changed

+3
-14
lines changed

1 file changed

+3
-14
lines changed

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

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ buildscript {
99
}
1010

1111
plugins {
12-
id("otel.java-conventions")
13-
12+
// Don't apply otel.java-conventions since the shared dependency platform
13+
// conflicts somehow with Quarkus dependency resolution, causing StackOverflow
14+
id("java")
1415
id("com.google.cloud.tools.jib")
1516
id("io.quarkus") version "3.29.3"
1617
}
@@ -65,16 +66,4 @@ tasks {
6566
compileJava {
6667
dependsOn(compileQuarkusGeneratedSourcesJava)
6768
}
68-
69-
sourcesJar {
70-
dependsOn(quarkusGenerateCode, compileQuarkusGeneratedSourcesJava)
71-
}
72-
73-
javadoc {
74-
dependsOn(compileQuarkusGeneratedSourcesJava)
75-
}
76-
77-
checkstyleMain {
78-
dependsOn(compileQuarkusGeneratedSourcesJava)
79-
}
8069
}

0 commit comments

Comments
 (0)