Upgraded to Gradle 7.0.1

This commit is contained in:
Erik C. Thauvin 2021-05-11 20:40:20 -07:00
parent ccfe179a2e
commit c4d10acfbc
4 changed files with 16 additions and 7 deletions

View file

@ -17,13 +17,13 @@ dependencies {
}
application {
mainClassName = "com.example.IsgdExampleKt"
mainClass.set("com.example.IsgdExampleKt")
}
tasks {
register("runJava", JavaExec::class) {
group = "application"
main = "com.example.IsgdSample"
classpath = sourceSets["main"].runtimeClasspath
classpath = sourceSets.main.get().runtimeClasspath
}
}