build.gradle.kts

changeset 254
55ca6cafc3dd
parent 247
e71ae69c68c0
child 256
a7da88714dc3
     1.1 --- a/build.gradle.kts	Tue Nov 01 21:31:15 2022 +0100
     1.2 +++ b/build.gradle.kts	Wed Dec 28 13:21:30 2022 +0100
     1.3 @@ -1,13 +1,11 @@
     1.4  import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
     1.5  
     1.6  plugins {
     1.7 -    kotlin("jvm") version "1.5.32"
     1.8 +    kotlin("jvm") version "1.7.21"
     1.9      war
    1.10  }
    1.11  group = "de.uapcore"
    1.12 -version = "0.6-SNAPSHOT"
    1.13 -
    1.14 -val flexmarkVersion = "0.62.2"
    1.15 +version = "1.0-SNAPSHOT"
    1.16  
    1.17  repositories {
    1.18      mavenCentral()
    1.19 @@ -32,13 +30,17 @@
    1.20      sourceSets {
    1.21          val main by getting {
    1.22              dependencies {
    1.23 -                compileOnly("javax.servlet:javax.servlet-api:3.1.0")
    1.24 -                compileOnly("javax.servlet:jstl:1.2")
    1.25 +                // change the following to compileOnly, if you already have them on your server
    1.26 +                implementation("jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api:3.0.0")
    1.27 +                implementation("org.glassfish.web:jakarta.servlet.jsp.jstl:3.0.1")
    1.28 +                implementation("org.postgresql:postgresql:42.5.1")
    1.29 +                compileOnly("jakarta.servlet:jakarta.servlet-api:6.0.0")
    1.30 +                val flexmarkVersion = "0.64.0"
    1.31                  implementation("com.vladsch.flexmark:flexmark:${flexmarkVersion}")
    1.32                  implementation("com.vladsch.flexmark:flexmark-util-data:${flexmarkVersion}")
    1.33                  implementation("com.vladsch.flexmark:flexmark-ext-tables:${flexmarkVersion}")
    1.34                  implementation("com.vladsch.flexmark:flexmark-ext-gfm-strikethrough:${flexmarkVersion}")
    1.35 -                implementation("io.github.java-diff-utils:java-diff-utils:4.5")
    1.36 +                implementation("io.github.java-diff-utils:java-diff-utils:4.12")
    1.37              }
    1.38          }
    1.39      }

mercurial