update versions - fixes #269

Sat, 15 Jul 2023 13:42:48 +0200

author
Mike Becker <universe@uap-core.de>
date
Sat, 15 Jul 2023 13:42:48 +0200
changeset 275
b199f9cf1a75
parent 274
e529a7cd4f17
child 276
2a169e4d1d13

update versions - fixes #269

build.gradle.kts file | annotate | diff | comparison | revisions
     1.1 --- a/build.gradle.kts	Sun Jan 08 19:40:23 2023 +0100
     1.2 +++ b/build.gradle.kts	Sat Jul 15 13:42:48 2023 +0200
     1.3 @@ -1,7 +1,7 @@
     1.4  import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
     1.5  
     1.6  plugins {
     1.7 -    kotlin("jvm") version "1.7.21"
     1.8 +    kotlin("jvm") version "1.9.0"
     1.9      war
    1.10  }
    1.11  group = "de.uapcore"
    1.12 @@ -15,6 +15,10 @@
    1.13      kotlinOptions.jvmTarget = "11"
    1.14  }
    1.15  
    1.16 +tasks.withType<JavaCompile>().configureEach {
    1.17 +    targetCompatibility = "11"
    1.18 +}
    1.19 +
    1.20  tasks.jar {
    1.21      enabled = false
    1.22  }
    1.23 @@ -33,12 +37,12 @@
    1.24                  arrayOf(
    1.25                      "jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api:3.0.0",
    1.26                      "org.glassfish.web:jakarta.servlet.jsp.jstl:3.0.1",
    1.27 -                    "org.postgresql:postgresql:42.5.1"
    1.28 +                    "org.postgresql:postgresql:42.6.0"
    1.29                  ).forEach {
    1.30                      if (libsAreProvided) compileOnly(it) else implementation(it)
    1.31                  }
    1.32                  compileOnly("jakarta.servlet:jakarta.servlet-api:6.0.0")
    1.33 -                val flexmarkVersion = "0.64.0"
    1.34 +                val flexmarkVersion = "0.64.8"
    1.35                  implementation("com.vladsch.flexmark:flexmark:${flexmarkVersion}")
    1.36                  implementation("com.vladsch.flexmark:flexmark-util-data:${flexmarkVersion}")
    1.37                  implementation("com.vladsch.flexmark:flexmark-ext-tables:${flexmarkVersion}")

mercurial