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 Oct 21, 2024
1 parent e3a1cf6 commit 72cc542
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
24 changes: 12 additions & 12 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
[versions]
java = "17"
checkstyle = "10.17.0"
jackson = "2.17.1"
checkstyle = "10.18.2"
jackson = "2.18.0"
jacoco = "0.8.12"
junit = "5.10.2"
spotbugs = "4.8.5"
junit = "5.11.2"
spotbugs = "4.8.6"
xmlUnit = "2.10.0"

[plugins]
cthingVersioning = { id = "org.cthing.cthing-versioning", version = "1.0.1" }
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.15" }
dependencyAnalysis = { id = "com.autonomousapps.dependency-analysis", version = "2.2.0" }
pluginPublish = { id = "com.gradle.plugin-publish", version = "1.3.0" }
spotbugs = { id = "com.github.spotbugs", version = "6.0.25" }
versions = { id = "com.github.ben-manes.versions", version = "0.51.0" }

[libraries]
assertJ = "org.assertj:assertj-core:3.26.0"
commonsIO = "commons-io:commons-io:2.16.1"
assertJ = "org.assertj:assertj-core:3.26.3"
commonsIO = "commons-io:commons-io:2.17.0"
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 @@ -25,15 +25,15 @@ jacksonDatabind = { module = "com.fasterxml.jackson.core:jackson-databind", vers
jacksonYaml = { module = "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", version.ref = "jackson" }
jsonSchemaCore = "com.github.java-json-tools:json-schema-core:1.2.14"
jsonSchemaValidator = "com.github.java-json-tools:json-schema-validator:2.2.14"
jsonUnit = "net.javacrumbs.json-unit:json-unit-assertj:3.2.7"
jsonUnit = "net.javacrumbs.json-unit:json-unit-assertj:3.4.1"
jsonWriter = "org.cthing:jsonwriter:1.0.0"
jsr305 = "com.google.code.findbugs:jsr305:3.0.2"
junitApi = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit" }
junitEngine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit" }
junitLauncher = "org.junit.platform:junit-platform-launcher:1.10.2"
junitLauncher = "org.junit.platform:junit-platform-launcher:1.11.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"
spotbugsContrib = "com.mebigfatguy.sb-contrib:sb-contrib:7.6.5"
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" }
Expand Down
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.8-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public class PluginIntegTest {
public static Stream<Arguments> gradleVersionProvider() {
return Stream.of(
arguments("8.3"),
arguments("8.8")
arguments("8.10.2")
);
}

Expand Down

0 comments on commit 72cc542

Please sign in to comment.