Skip to content

Commit b975fd7

Browse files
renovate[bot]trask
andauthored
fix(deps): update quarkus packages to v3.29.3 (#14481)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Trask Stalnaker <[email protected]>
1 parent 55d77c9 commit b975fd7

File tree

1 file changed

+8
-15
lines changed

1 file changed

+8
-15
lines changed

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

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

1111
plugins {
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

1823
dependencies {
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
}

0 commit comments

Comments
 (0)