40 lines
923 B
Kotlin
40 lines
923 B
Kotlin
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
id("application")
|
|
id("com.github.ben-manes.versions") version "0.49.0"
|
|
kotlin("jvm") version "1.9.20"
|
|
}
|
|
|
|
defaultTasks(ApplicationPlugin.TASK_RUN_NAME)
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("jakarta.servlet:jakarta.servlet-api:6.0.0")
|
|
implementation("net.thauvin.erik:akismet-kotlin:1.0.0")
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
application {
|
|
mainClass.set("com.example.AkismetExampleKt")
|
|
}
|
|
|
|
tasks {
|
|
withType<KotlinCompile>().configureEach {
|
|
kotlinOptions.jvmTarget = java.targetCompatibility.toString()
|
|
}
|
|
|
|
register("runJava", JavaExec::class) {
|
|
group = "application"
|
|
mainClass.set("com.example.AkismetSample")
|
|
classpath = sourceSets.main.get().runtimeClasspath
|
|
}
|
|
}
|