We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36ee564 commit 69b5319Copy full SHA for 69b5319
instrumentation/vertx/vertx-web-3.0/javaagent/build.gradle.kts
@@ -45,18 +45,24 @@ testing {
45
}
46
47
48
+val testLatestDeps = findProperty("testLatestDeps") as Boolean
49
+
50
tasks {
- if (findProperty("testLatestDeps") as Boolean) {
51
+ if (testLatestDeps) {
52
// disable regular test running and compiling tasks when latest dep test task is run
53
named("test") {
54
enabled = false
55
56
named("compileTestGroovy") {
57
58
59
+ }
60
- check {
- dependsOn(testing.suites)
- }
61
+ named("latestDepTest") {
62
+ enabled = testLatestDeps
63
64
65
+ check {
66
+ dependsOn(testing.suites)
67
68
0 commit comments