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 Feb 14, 2024
1 parent f1953a0 commit dc11ec1
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ dependencies {
spotbugsPlugins(libs.spotbugsContrib)
}

configurations.checkstyle {
resolutionStrategy.capabilitiesResolution.withCapability("com.google.collections:google-collections") {
select("com.google.guava:guava:0")
}
}

checkstyle {
toolVersion = libs.versions.checkstyle.get()
isIgnoreFailures = false
Expand Down
22 changes: 11 additions & 11 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
[versions]
java = "17"
checkstyle = "10.12.5"
checkstyle = "10.13.0"
jacoco = "0.8.11"
junit = "5.10.1"
spotbugs = "4.8.2"
junit = "5.10.2"
spotbugs = "4.8.3"

[plugins]
spotbugs = { id = "com.github.spotbugs", version = "6.0.2" }
versions = { id = "com.github.ben-manes.versions", version = "0.50.0" }
spotbugs = { id = "com.github.spotbugs", version = "6.0.7" }
versions = { id = "com.github.ben-manes.versions", version = "0.51.0" }

[libraries]
assertJ = "org.assertj:assertj-core:3.24.2"
assertJ = "org.assertj:assertj-core:3.25.3"
cthingAnnots = "org.cthing:cthing-annotations:1.0.0"
equalsVerifier = "nl.jqno.equalsverifier:equalsverifier:3.15.4"
jacksonDatabind = "com.fasterxml.jackson.core:jackson-databind:2.16.0"
equalsVerifier = "nl.jqno.equalsverifier:equalsverifier:3.15.6"
jacksonDatabind = "com.fasterxml.jackson.core:jackson-databind:2.16.1"
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.1"
junitLauncher = "org.junit.platform:junit-platform-launcher:1.10.2"
junitParams = { module = "org.junit.jupiter:junit-jupiter-params", version.ref = "junit" }
mockito = "org.mockito:mockito-core:5.8.0"
spotbugsContrib = "com.mebigfatguy.sb-contrib:sb-contrib:7.6.3"
mockito = "org.mockito:mockito-core:5.10.0"
spotbugsContrib = "com.mebigfatguy.sb-contrib:sb-contrib:7.6.4"
versionParser = "org.cthing:versionparser:4.2.1"
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.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit dc11ec1

Please sign in to comment.