Skip to content

Commit f8c5e05

Browse files
authored
Merge pull request #71 from imsweb/update-dependencies
Update various dependencies
2 parents a865b80 + 8418b7c commit f8c5e05

File tree

6 files changed

+40
-33
lines changed

6 files changed

+40
-33
lines changed

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ jobs:
3333
env:
3434
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
3535
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
36-
run: ./gradlew build sonarqube
36+
run: ./gradlew build sonar
3737

build.gradle

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ plugins {
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"
9-
id 'com.adarshr.test-logger' version '3.2.0'
10-
id "com.github.ben-manes.versions" version "0.47.0"
11-
id 'org.sonatype.gradle.plugins.scan' version '2.6.0'
12-
id "org.sonarqube" version "4.2.1.3168"
9+
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"
1313
}
1414

1515
group = 'com.imsweb'
@@ -36,12 +36,12 @@ repositories {
3636
dependencies {
3737
api 'com.thoughtworks.xstream:xstream:1.4.20'
3838

39-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.3'
40-
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.9.3'
41-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.3'
42-
testImplementation 'commons-io:commons-io:2.13.0'
43-
testImplementation 'org.jsoup:jsoup:1.16.1'
44-
testImplementation 'com.jayway.jsonpath:json-path:2.8.0'
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'
44+
testImplementation 'com.jayway.jsonpath:json-path:2.9.0'
4545
}
4646

4747
jar {
@@ -85,11 +85,12 @@ ossIndexAudit {
8585
}
8686
check.dependsOn 'ossIndexAudit'
8787

88-
sonarqube {
88+
sonar {
8989
properties {
9090
property "sonar.projectKey", "imsweb_x12-parser"
9191
property "sonar.organization", "imsweb"
9292
property "sonar.host.url", "https://sonarcloud.io"
93+
property "sonar.gradle.skipCompile", "true"
9394
}
9495
}
9596

@@ -197,6 +198,6 @@ nexusStaging {
197198
}
198199

199200
wrapper {
200-
gradleVersion = '8.2.1'
201+
gradleVersion = '8.10'
201202
distributionType = Wrapper.DistributionType.ALL
202203
}

gradle/wrapper/gradle-wrapper.jar

-19.3 KB
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.2.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

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

gradlew.bat

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

0 commit comments

Comments
 (0)