323:ba2a1313eb98 | 324:61b16fc21f4d |
---|---|
3 plugins { | 3 plugins { |
4 kotlin("jvm") version "2.0.0" | 4 kotlin("jvm") version "2.0.0" |
5 war | 5 war |
6 } | 6 } |
7 group = "de.uapcore" | 7 group = "de.uapcore" |
8 version = "1.3.0" | 8 version = "1.4.0-snapshot" |
9 | 9 |
10 repositories { | 10 repositories { |
11 mavenCentral() | 11 mavenCentral() |
12 } | 12 } |
13 | 13 |
39 val main by getting { | 39 val main by getting { |
40 dependencies { | 40 dependencies { |
41 arrayOf( | 41 arrayOf( |
42 "jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api:3.0.0", | 42 "jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api:3.0.0", |
43 "org.glassfish.web:jakarta.servlet.jsp.jstl:3.0.1", | 43 "org.glassfish.web:jakarta.servlet.jsp.jstl:3.0.1", |
44 "org.postgresql:postgresql:42.7.3" | 44 "org.postgresql:postgresql:42.7.4" |
45 ).forEach { | 45 ).forEach { |
46 if (libsAreProvided) compileOnly(it) else implementation(it) | 46 if (libsAreProvided) compileOnly(it) else implementation(it) |
47 } | 47 } |
48 compileOnly("jakarta.servlet:jakarta.servlet-api:6.0.0") | 48 compileOnly("jakarta.servlet:jakarta.servlet-api:6.0.0") |
49 val flexmarkVersion = "0.64.8" | 49 val flexmarkVersion = "0.64.8" |
55 } | 55 } |
56 } | 56 } |
57 val test by getting { | 57 val test by getting { |
58 dependencies { | 58 dependencies { |
59 implementation("org.jetbrains.kotlin:kotlin-test-junit5") | 59 implementation("org.jetbrains.kotlin:kotlin-test-junit5") |
60 runtimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.3") | 60 runtimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.2") |
61 } | 61 } |
62 } | 62 } |
63 } | 63 } |
64 } | 64 } |