Skip to content

Commit

Permalink
Upgrade dependencies (#74)
Browse files Browse the repository at this point in the history
+ Gradle from 8.10.2 to 8.12
+ JUnit Jupiter from 5.11.2 to 5.11.4
+ AssertJ from 3.26.2 to 3.27.2
+ Nullaway from 0.12.1 to 0.12.3
  • Loading branch information
tginsberg authored Jan 9, 2025
1 parent e27a6d9 commit c82d1b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ dependencies {
because("Starting in Gradle 9.0, this needs to be an explicitly declared dependency")
}

testImplementation("org.junit.jupiter:junit-jupiter:5.11.2")
testImplementation("org.junit.jupiter:junit-jupiter:5.11.4")

testImplementation("org.assertj:assertj-core:3.26.3") {
testImplementation("org.assertj:assertj-core:3.27.2") {
because("These assertions are clearer than JUnit+Hamcrest")
}

errorprone("com.google.errorprone:error_prone_core:2.36.0")
errorprone("com.uber.nullaway:nullaway:0.12.1")
errorprone("com.uber.nullaway:nullaway:0.12.3")
}

publishing {
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.10.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit c82d1b8

Please sign in to comment.