We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4cc954 commit 067dd19Copy full SHA for 067dd19
1 file changed
cdm/gcdm/build.gradle.kts
@@ -5,6 +5,7 @@
5
6
import com.github.psxpaul.task.JavaExecFork
7
import com.google.protobuf.gradle.id
8
+import org.gradle.kotlin.dsl.get
9
10
plugins {
11
id("ncj-java-library-conventions")
@@ -83,7 +84,6 @@ val startDaemon =
83
84
waitForPort = 16111
85
waitForOutput = "Server started, listening on 16111"
86
dependsOn(tasks.testClasses)
- doLast { stopAfter = tasks.named("test") }
87
}
88
89
-tasks.test { dependsOn(startDaemon) }
+tasks.withType<Test> { dependsOn(startDaemon) }
0 commit comments