build.gradle.kts

Mon, 04 Jan 2021 12:45:22 +0100

author
Mike Becker <universe@uap-core.de>
date
Mon, 04 Jan 2021 12:45:22 +0100
changeset 172
89b3320557e2
parent 166
6eede6088d41
child 174
690a9aad3f16
permissions
-rw-r--r--

fixes #120 - thin border rendering for Chrome

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"
}

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}")
            }
        }
    }
}

mercurial