Mon, 04 Jan 2021 15:25:59 +0100
adds project ordering - fixes #34
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { kotlin("jvm") version "1.4.10" war } group = "de.uapcore" version = "0.5-SNAPSHOT" val log4jVersion = "2.13.1" 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}") } } } }