We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 324b829 commit c977fc7Copy full SHA for c977fc7
processing/build.gradle.kts
@@ -27,4 +27,12 @@ tasks{
27
withType<Detekt>().configureEach {
28
jvmTarget = jdkVersion
29
}
30
+
31
+ register<JavaExec>("execute") {
32
+ group = "application"
33
+ description = "Executes the main function in Main.kt"
34
+ mainClass.set("org.jetbrains.research.tasktracker.progsnap2.MainKt")
35
+ classpath = sourceSets["main"].runtimeClasspath
36
+ args = project.findProperty("execArgs")?.toString()?.split(":") ?: listOf()
37
+ }
38
0 commit comments