Skip to content

Commit 1dab46f

Browse files
committed
Update libs, enable auto publishing.
1 parent cb1c12b commit 1dab46f

5 files changed

Lines changed: 11 additions & 10 deletions

File tree

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@ ij_java_wrap_long_lines = false
255255

256256
[*.{kt,kts}] # See danger section: https://pinterest.github.io/ktlint/1.1.0/rules/configuration-ktlint/
257257
ktlint_code_style = intellij_idea
258+
ktlint_standard_no-unused-imports = enabled
258259
ktlint_standard_multiline-expression-wrapping = disabled
259260
ktlint_standard_string-template-indent = disabled
260261
ij_continuation_indent_size = 4

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ allprojects {
6868

6969
withType<Test>().configureEach {
7070
useJUnitPlatform()
71+
jvmArgs = listOf("-Xshare:off")
7172

7273
testLogging {
7374
events("failed", "skipped")

gradle/libs.versions.toml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,11 @@ gradleUpdateVersions = "1.1.0"
88
gradleVersions = "0.53.0"
99
# @keep used manually for jacoco config, see build.gradle.kts
1010
jacoco = "0.8.14"
11-
junit-jupiter = "6.0.3"
12-
junit-platform = "6.0.3"
11+
junit = "6.0.3"
1312
# @keep jvm target
1413
jvm = "17"
15-
kotest = "6.1.4"
16-
kotlin = "2.3.10"
14+
kotest = "6.1.10"
15+
kotlin = "2.3.20"
1716
kotlinter = "5.4.2"
1817
kotlinx-serialization = "1.10.0"
1918
mockk = "1.14.9"
@@ -22,10 +21,10 @@ nmcp = "1.4.4"
2221
[libraries]
2322
bouncycastle = { module = "org.bouncycastle:bcprov-jdk18on", version.ref = "bouncycastle" }
2423
clikt = { module = "com.github.ajalt.clikt:clikt", version.ref = "clikt" }
25-
junit-jupiter-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit-jupiter" }
26-
junit-jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit-jupiter" }
27-
junit-jupiter-params = { module = "org.junit.jupiter:junit-jupiter-params", version.ref = "junit-jupiter" }
28-
junit-platform-launcher = { module = "org.junit.platform:junit-platform-launcher", version.ref = "junit-platform" }
24+
junit-jupiter-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit" }
25+
junit-jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit" }
26+
junit-jupiter-params = { module = "org.junit.jupiter:junit-jupiter-params", version.ref = "junit" }
27+
junit-platform-launcher = { module = "org.junit.platform:junit-platform-launcher", version.ref = "junit" }
2928
kotest-assertions-core = { module = "io.kotest:kotest-assertions-core", version.ref = "kotest" }
3029
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlinx-serialization" }
3130
mockk = { module = "io.mockk:mockk", version.ref = "mockk" }

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#Wed Dec 04 12:38:49 EST 2019
2-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
2+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
33
distributionBase=GRADLE_USER_HOME
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists

paseto/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ nmcpAggregation {
144144
username = System.getenv("PUBLISH_USER")
145145
password = System.getenv("PUBLISH_PASS")
146146

147-
publishingType = "USER_MANAGED"
147+
publishingType = "AUTOMATIC"
148148
}
149149
}
150150

0 commit comments

Comments
 (0)