Skip to content

Commit 78c7729

Browse files
author
may
committed
Update dependencies
1 parent f8c5e05 commit 78c7729

File tree

7 files changed

+31
-29
lines changed

7 files changed

+31
-29
lines changed

.github/workflows/integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
uses: actions/setup-java@v3
2020
with:
2121
distribution: 'adopt'
22-
java-version: '17'
22+
java-version: '21'
2323
cache: 'gradle'
2424

2525
- name: Cache SonarCloud packages
26-
uses: actions/cache@v3
26+
uses: actions/cache@v4
2727
with:
2828
path: ~/.sonar/cache
2929
key: ${{ runner.os }}-sonar

.github/workflows/publish.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ jobs:
2121
uses: actions/setup-java@v3
2222
with:
2323
distribution: 'adopt'
24-
java-version: '17'
24+
java-version: '21'
2525
cache: 'gradle'
2626

27-
- name: Publish
27+
- name: Publish to Maven Central (Portal)
2828
run: |
2929
chmod +x gradlew
30-
./gradlew publish closeAndReleaseRepository
30+
./gradlew publishAndReleaseToMavenCentral --no-configuration-cache
3131
env:
32-
ORG_GRADLE_PROJECT_nexusUsername: ${{ secrets.NEXUS_USERNAME }}
33-
ORG_GRADLE_PROJECT_nexusPassword: ${{ secrets.NEXUS_PASSWORD }}
34-
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.SEER_GPG_SECRET_KEY }}
35-
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.SEER_GPG_PASSWORD }}
32+
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
33+
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
34+
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_KEY }}
35+
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }}

build.gradle

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ plugins {
22
id 'java-library'
33
id 'checkstyle'
44
id 'jacoco'
5-
id "com.github.spotbugs" version "5.0.14"
5+
id "com.github.spotbugs" version "6.1.11"
66
id 'maven-publish'
77
id 'signing'
88
id "io.codearte.nexus-staging" version "0.30.0" // logs into Sonotype OSS and does a "Close" and "Release"
99
id 'com.adarshr.test-logger' version '4.0.0'
10-
id "com.github.ben-manes.versions" version "0.51.0"
11-
id 'org.sonatype.gradle.plugins.scan' version '2.8.3'
12-
id "org.sonarqube" version "5.1.0.4882"
10+
id "com.github.ben-manes.versions" version "0.52.0"
11+
id 'org.sonatype.gradle.plugins.scan' version '3.1.1'
12+
id "org.sonarqube" version "6.1.0.5360"
1313
}
1414

1515
group = 'com.imsweb'
16-
version = '1.15'
16+
version = '1.16-SNAPSHOT'
1717
description = 'Java client library for parsing x12 files'
1818

1919
tasks.withType(JavaCompile) {
@@ -34,13 +34,16 @@ repositories {
3434
}
3535

3636
dependencies {
37-
api 'com.thoughtworks.xstream:xstream:1.4.20'
37+
api 'com.thoughtworks.xstream:xstream:1.4.21'
3838

39-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.0'
40-
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.11.0'
41-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.0'
42-
testImplementation 'commons-io:commons-io:2.16.1'
43-
testImplementation 'org.jsoup:jsoup:1.18.1'
39+
testImplementation platform('org.junit:junit-bom:5.12.2')
40+
testImplementation 'org.junit.jupiter:junit-jupiter-api'
41+
testImplementation 'org.junit.jupiter:junit-jupiter-params'
42+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
43+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.12.2'
44+
45+
testImplementation 'commons-io:commons-io:2.19.0'
46+
testImplementation 'org.jsoup:jsoup:1.20.1'
4447
testImplementation 'com.jayway.jsonpath:json-path:2.9.0'
4548
}
4649

@@ -198,6 +201,6 @@ nexusStaging {
198201
}
199202

200203
wrapper {
201-
gradleVersion = '8.10'
204+
gradleVersion = '8.14'
202205
distributionType = Wrapper.DistributionType.ALL
203206
}

gradle/wrapper/gradle-wrapper.jar

181 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 4 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)