Skip to content

Commit 6ce9d55

Browse files
committed
Fikset deprecation warning fra gradle (task greier)
1 parent 550b0ad commit 6ce9d55

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

apps/kafka-key-generator/build.gradle.kts

+11-5
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,15 @@ tasks.named<Test>("test") {
9595
useJUnitPlatform()
9696
}
9797

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()
98+
abstract class RunAppTask : JavaExec() {
99+
init {
100+
classpath = sourceSets["main"].runtimeClasspath +
101+
sourceSets["test"].runtimeClasspath
102+
mainClass = "no.nav.paw.kafkakeygenerator.TestApplicationKt"
103+
args = emptyList()
104+
}
105+
}
106+
tasks.register<RunAppTask>("runApp") {
107+
group = "application"
108+
description = "Run the application"
103109
}

0 commit comments

Comments
 (0)