Upgraded to Gradle 7.1.

This commit is contained in:
Erik C. Thauvin 2021-06-18 17:20:30 -07:00
parent af3de2cc74
commit b224e1fc99
12 changed files with 19 additions and 9 deletions

View file

@ -1,7 +1,7 @@
plugins {
id 'java'
id 'application'
id 'com.github.ben-manes.versions' version '0.38.0'
id 'com.github.ben-manes.versions' version '0.39.0'
}
// ./gradlew run
@ -34,5 +34,5 @@ tasks.withType(JavaCompile) {
task runExample(type: JavaExec) {
group = 'application'
classpath = sourceSets.main.runtimeClasspath
main = 'com.example.Example'
mainClass = 'com.example.Example'
}