CLeaned up examples.

This commit is contained in:
Erik C. Thauvin 2021-06-18 19:41:38 -07:00
parent 5a422fe502
commit 8c5f4a72fa
17 changed files with 38 additions and 37 deletions

View file

@ -31,6 +31,7 @@ kapt {
repositories {
mavenLocal()
mavenCentral()
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots") }
}
application {
@ -40,7 +41,7 @@ application {
tasks {
register("runJava", JavaExec::class) {
group = "application"
main = "com.example.JavaApp"
mainClass.set("com.example.JavaApp")
classpath = sourceSets.main.get().runtimeClasspath
}