Upgrade to JDK 16, Kotlin 1.3.21 and Gradle 7.1.1

This commit is contained in:
Erik C. Thauvin 2021-07-27 15:15:46 -07:00
parent c8259385f3
commit 8c86509e62
18 changed files with 74 additions and 48 deletions

View file

@ -1,7 +1,7 @@
plugins {
id("application")
id("com.github.ben-manes.versions") version "0.39.0"
kotlin("jvm") version "1.5.10"
kotlin("jvm") version "1.5.21"
}
// ./gradlew run --args='https://www.example.com https://is.gd/Pt2sET'
@ -23,7 +23,7 @@ application {
tasks {
register("runJava", JavaExec::class) {
group = "application"
main = "com.example.IsgdSample"
mainClass.set("com.example.IsgdSample")
classpath = sourceSets.main.get().runtimeClasspath
}
}