Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 8 additions & 15 deletions smoke-tests/images/quarkus/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,19 @@ buildscript {
}

plugins {
id("otel.java-conventions")
// otel.java-conventions isn't applied to this module because it adds
// platform(project(":dependencyManagement")) which conflicts with
// Quarkus's dependency resolution logic, causing infinite recursion in
// GradleApplicationModelBuilder.collectDependencies during the configuration phase
// resulting in StackOverflowError
id("java")

id("com.google.cloud.tools.jib")
id("io.quarkus") version "3.25.0"
id("io.quarkus") version "3.29.3"
}

dependencies {
implementation(enforcedPlatform("io.quarkus:quarkus-bom:3.26.0"))
implementation(enforcedPlatform("io.quarkus:quarkus-bom:3.29.3"))
implementation("io.quarkus:quarkus-rest")
}

Expand Down Expand Up @@ -65,16 +70,4 @@ tasks {
compileJava {
dependsOn(compileQuarkusGeneratedSourcesJava)
}

sourcesJar {
dependsOn(quarkusGenerateCode, compileQuarkusGeneratedSourcesJava)
}

javadoc {
dependsOn(compileQuarkusGeneratedSourcesJava)
}

checkstyleMain {
dependsOn(compileQuarkusGeneratedSourcesJava)
}
}
Loading