Upgraded to Kotlin 1.7.20
This commit is contained in:
parent
58c181de9b
commit
4a1f4e32b3
139 changed files with 311 additions and 1056 deletions
|
@ -3,7 +3,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|||
plugins {
|
||||
id("application")
|
||||
id("com.github.ben-manes.versions") version "0.42.0"
|
||||
kotlin("jvm") version "1.6.21"
|
||||
kotlin("jvm") version "1.7.20"
|
||||
}
|
||||
|
||||
// ./gradlew run runJava
|
||||
|
@ -16,14 +16,15 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation("javax.servlet:javax.servlet-api:4.0.1")
|
||||
// implementation("javax.servlet:javax.servlet-api:4.0.1")
|
||||
implementation("jakarta.servlet:jakarta.servlet-api:6.0.0")
|
||||
|
||||
implementation("net.thauvin.erik:akismet-kotlin:0.9.3-SNAPSHOT")
|
||||
}
|
||||
|
||||
java {
|
||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
targetCompatibility = JavaVersion.VERSION_1_8
|
||||
sourceCompatibility = JavaVersion.VERSION_11
|
||||
targetCompatibility = JavaVersion.VERSION_11
|
||||
}
|
||||
|
||||
application {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue