Sun, 12 Dec 2021 18:16:46 +0100
upgrade log4j version + make build jdk 17 ready
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { kotlin("jvm") version "1.5.32" war } group = "de.uapcore" version = "0.6-SNAPSHOT" val log4jVersion = "2.15.0" val slf4jVersion = "1.7.30" val flexmarkVersion = "0.62.2" repositories { mavenCentral() } tasks.withType<KotlinCompile>().configureEach { kotlinOptions.jvmTarget = "11" } // remove after removing all java sources tasks.withType<JavaCompile>().configureEach { sourceCompatibility = "11" targetCompatibility = "11" } tasks.war { archiveFileName.set("lightpit.war") from("src/main/resources") } kotlin { sourceSets { val main by getting { dependencies { compileOnly("javax.servlet:javax.servlet-api:3.1.0") compileOnly("javax.servlet:jstl:1.2") implementation("org.slf4j:slf4j-api:${slf4jVersion}") implementation("org.apache.logging.log4j:log4j-core:${log4jVersion}") implementation("org.apache.logging.log4j:log4j-slf4j-impl:${log4jVersion}") implementation("com.vladsch.flexmark:flexmark:${flexmarkVersion}") implementation("com.vladsch.flexmark:flexmark-util-data:${flexmarkVersion}") implementation("com.vladsch.flexmark:flexmark-ext-tables:${flexmarkVersion}") implementation("com.vladsch.flexmark:flexmark-ext-gfm-strikethrough:${flexmarkVersion}") implementation("io.github.java-diff-utils:java-diff-utils:4.5") } } } }