this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add 'gradlew run' task

+8
+8
build.gradle.kts
··· 189 189 190 190 destinationDirectory.set(releaseBuildDir) 191 191 } 192 + 193 + register<JavaExec>("run") { 194 + dependsOn("compileApp") 195 + group = "application" 196 + description = "Run Star Rod" 197 + mainClass.set(appMain) 198 + classpath = sourceSets.main.get().runtimeClasspath + files(layout.buildDirectory.dir("app")) 199 + } 192 200 } 193 201 194 202 tasks.withType<JavaCompile>().configureEach {