Skip to content

Commit

Permalink
Upgrade Gradle and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
baron1405 committed Jun 1, 2024
1 parent 9e15a88 commit 0977bf6
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,5 +218,5 @@ Perform the following steps to create a release.
- Increment the version patch number
- Set the build type to `BuildType.snapshot`
- Update the `CHANGELOG.md` with the changes in the release and prepare for next release changes
- Update the `Usage` section in the `README.md` with the latest artifact release version
- Update the `Usage` and `Compatibility` sections in the `README.md` with the latest artifact release version
- Commit these changes
3 changes: 3 additions & 0 deletions dev/spotbugs/suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
<Match>
<Bug pattern="EXS_EXCEPTION_SOFTENING_NO_CONSTRAINTS"/>
</Match>
<Match>
<Bug pattern="VA_FORMAT_STRING_USES_NEWLINE"/>
</Match>
<Match>
<Class name="~.*Test(\$.+)?"/>
</Match>
Expand Down
23 changes: 12 additions & 11 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
[versions]
java = "17"
checkstyle = "10.14.2"
jackson = "2.11.0"
jacoco = "0.8.11"
checkstyle = "10.17.0"
jackson = "2.17.1"
jacoco = "0.8.12"
junit = "5.10.2"
spotbugs = "4.8.3"
spotbugs = "4.8.5"
xmlUnit = "2.10.0"

[plugins]
cthingVersioning = { id = "org.cthing.cthing-versioning", version = "1.0.0" }
dependencyAnalysis = { id = "com.autonomousapps.dependency-analysis", version = "1.30.0" }
dependencyAnalysis = { id = "com.autonomousapps.dependency-analysis", version = "1.32.0" }
pluginPublish = { id = "com.gradle.plugin-publish", version = "1.2.1" }
spotbugs = { id = "com.github.spotbugs", version = "6.0.7" }
spotbugs = { id = "com.github.spotbugs", version = "6.0.15" }
versions = { id = "com.github.ben-manes.versions", version = "0.51.0" }

[libraries]
assertJ = "org.assertj:assertj-core:3.25.3"
commonsIO = "commons-io:commons-io:2.15.1"
assertJ = "org.assertj:assertj-core:3.26.0"
commonsIO = "commons-io:commons-io:2.16.1"
cthingAnnots = "org.cthing:cthing-annotations:1.0.0"
escapers = "org.cthing:escapers:1.0.0"
jacksonCoreUtils = "com.github.java-json-tools:jackson-coreutils:2.0"
Expand All @@ -33,7 +34,7 @@ junitLauncher = "org.junit.platform:junit-platform-launcher:1.10.2"
junitParams = { module = "org.junit.jupiter:junit-jupiter-params", version.ref = "junit" }
locc4j = "org.cthing:locc4j:1.0.0"
spotbugsContrib = "com.mebigfatguy.sb-contrib:sb-contrib:7.6.4"
xmlAssertJ = "org.xmlunit:xmlunit-assertj3:2.9.1"
xmlPlaceholders = "org.xmlunit:xmlunit-placeholders:2.9.1"
xmlUnit = "org.xmlunit:xmlunit-core:2.9.1"
xmlAssertJ = { module = "org.xmlunit:xmlunit-assertj3", version.ref = "xmlUnit" }
xmlPlaceholders = { module = "org.xmlunit:xmlunit-placeholders", version.ref = "xmlUnit" }
xmlUnit = { module = "org.xmlunit:xmlunit-core", version.ref = "xmlUnit" }
xmlWriter = "org.cthing:xmlwriter:3.0.0"
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@ public class PluginIntegTest {
public static Stream<Arguments> gradleVersionProvider() {
return Stream.of(
arguments("8.3"),
arguments("8.6"),
arguments("8.7")
arguments("8.8")
);
}

Expand Down

0 comments on commit 0977bf6

Please sign in to comment.