Skip to content

Commit f90473f

Browse files
committed
Are there duplicate registrations for the 'integrationTest' task?
1 parent 583270c commit f90473f

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

build.gradle

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,8 @@ subprojects {
120120
}
121121

122122
tasks.register('integrationTest', Test) {
123+
dependsOn subprojects.integrationTest
124+
123125
useJUnitPlatform()
124126

125127
// This prevents integrationTests from hanging indefinitely
@@ -200,10 +202,10 @@ tasks.register('manifests', Copy) {
200202
}
201203
into("build/sample-manifests")
202204
}
203-
204-
tasks.register('integrationTest', Test) {
205-
dependsOn subprojects.integrationTest
206-
}
205+
//
206+
//tasks.register('integrationTest', Test) {
207+
// dependsOn subprojects.integrationTest
208+
//}
207209

208210
tasks.register('cleanBootTomcatDir') {
209211
String tomcatBase = file("scripts/boot/tomcat/").getAbsolutePath()

0 commit comments

Comments
 (0)