Skip to content

Commit 98f42dd

Browse files
committed
up kotlin, update dependency check config
1 parent 834eaaa commit 98f42dd

3 files changed

Lines changed: 6 additions & 18 deletions

File tree

migration-library/build.gradle.kts

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
val kotlinVersion: String by project
2+
val kotlinXSerialization: String by project
23
val logbackVersion: String by project
34
val postgresVersion: String by project
45
val exposedVersion: String by project
56
val jacksonVersion: String by project
67
val mockkVersion: String by project
78

89
plugins {
9-
kotlin("jvm") version "2.3.10"
10-
kotlin("plugin.serialization") version "2.3.10"
10+
kotlin("jvm") version "2.3.20"
11+
kotlin("plugin.serialization") version "2.3.20"
1112
id("maven-publish")
1213
id("org.owasp.dependencycheck") version "12.2.0"
1314
}
@@ -38,13 +39,6 @@ buildscript {
3839
repositories {
3940
mavenCentral()
4041
}
41-
dependencies {
42-
classpath("org.owasp:dependency-check-gradle:12.2.0")
43-
}
44-
}
45-
46-
apply {
47-
plugin("org.owasp.dependencycheck")
4842
}
4943

5044
publishing {
@@ -84,7 +78,7 @@ dependencies {
8478
implementation("org.slf4j:slf4j-api:2.0.7")
8579
implementation("ch.qos.logback:logback-classic:$logbackVersion")
8680

87-
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0")
81+
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlinXSerialization")
8882
implementation("com.akuleshov7:ktoml-core:0.6.0")
8983
implementation("com.akuleshov7:ktoml-file:0.6.0")
9084

migration-library/gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ postgresVersion=42.7.10
55
exposedVersion=1.1.1
66
jacksonVersion=2.21.2
77
mockkVersion=1.14.9
8+
kotlinXSerialization="1.10.0"

wfd-xml/build.gradle.kts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,4 @@ buildscript {
3434
mavenCentral()
3535
maven("https://jitpack.io")
3636
}
37-
dependencies {
38-
classpath("org.owasp:dependency-check-gradle:12.2.0")
39-
}
40-
}
41-
42-
apply {
43-
plugin("org.owasp.dependencycheck")
44-
}
37+
}

0 commit comments

Comments
 (0)