Skip to content

Commit 952c702

Browse files
authored
Merge pull request #17 from atholbro/adhoc/library-upgrades-20251126
Upgrade dependencies.
2 parents f526ea4 + 782ac05 commit 952c702

13 files changed

Lines changed: 43 additions & 41 deletions

File tree

.java-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
17

.tool-versions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
java temurin-17.0.17+10

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ allprojects {
5151
}
5252

5353
jacoco {
54-
toolVersion = "0.8.13"
54+
toolVersion = "0.8.14"
5555
}
5656

5757
if (it.name != "paseto") {
@@ -132,8 +132,8 @@ allprojects {
132132
}
133133

134134
subprojects {
135-
sourceCompatibility = JavaVersion.VERSION_11
136-
targetCompatibility = JavaVersion.VERSION_11
135+
sourceCompatibility = JavaVersion.VERSION_17
136+
targetCompatibility = JavaVersion.VERSION_17
137137

138138
tasks.register('sourcesJar', Jar) {
139139
from sourceSets.main.allJava

crypto-v1-bc/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ publishing {
2424
dependencies {
2525
api project(":crypto-v1")
2626

27-
implementation group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.70'
27+
implementation group: 'org.bouncycastle', name: 'bcprov-jdk18on', version: '1.82'
2828

29-
testImplementation 'org.mockito:mockito-core:5.19.0'
30-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.13.4'
31-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.13.4'
32-
testRuntimeOnly "org.junit.platform:junit-platform-launcher:1.13.4"
29+
testImplementation 'org.mockito:mockito-core:5.20.0'
30+
testImplementation 'org.junit.jupiter:junit-jupiter-api:6.0.1'
31+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:6.0.1'
32+
testRuntimeOnly "org.junit.platform:junit-platform-launcher:6.0.1"
3333
}

crypto-v1/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ publishing {
2424
dependencies {
2525
api project(":crypto")
2626

27-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.13.4'
28-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.13.4'
29-
testRuntimeOnly "org.junit.platform:junit-platform-launcher:1.13.4"
27+
testImplementation 'org.junit.jupiter:junit-jupiter-api:6.0.1'
28+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:6.0.1'
29+
testRuntimeOnly "org.junit.platform:junit-platform-launcher:6.0.1"
3030
}

crypto-v2-bc/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ publishing {
2424
dependencies {
2525
api project(":crypto-v2")
2626

27-
implementation group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.70'
28-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.13.4'
29-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.13.4'
30-
testRuntimeOnly "org.junit.platform:junit-platform-launcher:1.13.4"
27+
implementation group: 'org.bouncycastle', name: 'bcprov-jdk18on', version: '1.82'
28+
testImplementation 'org.junit.jupiter:junit-jupiter-api:6.0.1'
29+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:6.0.1'
30+
testRuntimeOnly "org.junit.platform:junit-platform-launcher:6.0.1"
3131
}

crypto-v2/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ publishing {
2424
dependencies {
2525
api project(":crypto")
2626

27-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.13.4'
28-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.13.4'
29-
testRuntimeOnly "org.junit.platform:junit-platform-launcher:1.13.4"
27+
testImplementation 'org.junit.jupiter:junit-jupiter-api:6.0.1'
28+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:6.0.1'
29+
testRuntimeOnly "org.junit.platform:junit-platform-launcher:6.0.1"
3030
}

crypto-v4-bc/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ publishing {
2424
dependencies {
2525
api project(":crypto-v4")
2626

27-
implementation group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.70'
28-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.13.4'
29-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.13.4'
30-
testRuntimeOnly "org.junit.platform:junit-platform-launcher:1.13.4"
27+
implementation group: 'org.bouncycastle', name: 'bcprov-jdk18on', version: '1.82'
28+
testImplementation 'org.junit.jupiter:junit-jupiter-api:6.0.1'
29+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:6.0.1'
30+
testRuntimeOnly "org.junit.platform:junit-platform-launcher:6.0.1"
3131
}

crypto-v4/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ publishing {
2424
dependencies {
2525
api project(":crypto")
2626

27-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.13.4'
28-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.13.4'
29-
testRuntimeOnly "org.junit.platform:junit-platform-launcher:1.13.4"
27+
testImplementation 'org.junit.jupiter:junit-jupiter-api:6.0.1'
28+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:6.0.1'
29+
testRuntimeOnly "org.junit.platform:junit-platform-launcher:6.0.1"
3030
}

encoding-json-gson/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies {
2727

2828
implementation "com.google.code.gson:gson:2.13.2"
2929

30-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.13.4'
31-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.13.4'
32-
testRuntimeOnly "org.junit.platform:junit-platform-launcher:1.13.4"
30+
testImplementation 'org.junit.jupiter:junit-jupiter-api:6.0.1'
31+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:6.0.1'
32+
testRuntimeOnly "org.junit.platform:junit-platform-launcher:6.0.1"
3333
}

0 commit comments

Comments
 (0)