Skip to content

Commit 9582416

Browse files
committed
quarkus
1 parent e463586 commit 9582416

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

instrumentation/quarkus-resteasy-reactive/quarkus2-testing/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,7 @@ tasks.named("checkstyleTest").configure {
3434
tasks.named("compileTestJava").configure {
3535
dependsOn(tasks.named("compileQuarkusTestGeneratedSourcesJava"))
3636
}
37+
38+
tasks.configureEach {
39+
notCompatibleWithConfigurationCache("TODO")
40+
}

instrumentation/quarkus-resteasy-reactive/quarkus3-testing/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,7 @@ tasks.named("compileJava").configure {
3434
tasks.named("sourcesJar").configure {
3535
dependsOn(tasks.named("compileQuarkusGeneratedSourcesJava"))
3636
}
37+
38+
tasks.configureEach {
39+
notCompatibleWithConfigurationCache("TODO")
40+
}

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,13 @@ tasks {
5858
}
5959
}
6060

61+
named("compileJava").configure {
62+
dependsOn(named("compileQuarkusGeneratedSourcesJava"))
63+
}
64+
6165
withType<JibTask>().configureEach {
6266
dependsOn(quarkusBuild)
67+
notCompatibleWithConfigurationCache("see https://github.com/GoogleContainerTools/jib/issues/3132")
6368
}
6469

6570
sourcesJar {

0 commit comments

Comments
 (0)