We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 550b0ad commit 6ce9d55Copy full SHA for 6ce9d55
apps/kafka-key-generator/build.gradle.kts
@@ -95,9 +95,15 @@ tasks.named<Test>("test") {
95
useJUnitPlatform()
96
}
97
98
-tasks.create("runTestApp", JavaExec::class) {
99
- classpath = sourceSets["test"].runtimeClasspath +
100
- sourceSets["main"].runtimeClasspath
101
- mainClass = "no.nav.paw.kafkakeygenerator.TestApplicationKt"
102
- args = listOf()
+abstract class RunAppTask : JavaExec() {
+ init {
+ classpath = sourceSets["main"].runtimeClasspath +
+ sourceSets["test"].runtimeClasspath
+ mainClass = "no.nav.paw.kafkakeygenerator.TestApplicationKt"
103
+ args = emptyList()
104
+ }
105
+}
106
+tasks.register<RunAppTask>("runApp") {
107
+ group = "application"
108
+ description = "Run the application"
109
0 commit comments