Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Taylor Smock <tsmock@meta.com>
  • Loading branch information
tsmock committed Jul 18, 2023
1 parent dedb3df commit 165bc1e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ import kotlin.reflect.full.starProjectedType

plugins {
id("application")
id("com.diffplug.spotless") version "6.9.1"
id("com.github.ben-manes.versions") version "0.42.0"
id("com.github.spotbugs") version "5.0.9"
id("net.ltgt.errorprone") version "2.0.2"
id("org.openstreetmap.josm") version "0.8.0"
id("org.sonarqube") version "3.4.0.2513"
id("com.diffplug.spotless") version "6.20.0"
id("com.github.ben-manes.versions") version "0.47.0"
id("com.github.spotbugs") version "5.0.14"
id("net.ltgt.errorprone") version "3.1.0"
id("org.openstreetmap.josm") version "0.8.2"
id("org.sonarqube") version "4.3.0.3225"
//id("org.checkerframework") version "0.6.14"

eclipse
Expand Down Expand Up @@ -58,13 +58,13 @@ java.targetCompatibility = JavaVersion.VERSION_1_8
val versions = mapOf(
"awaitility" to "4.2.0",
// Errorprone 2.11 requires Java 11+
"errorprone" to if (JavaVersion.current() >= JavaVersion.VERSION_11) "2.15.0" else "2.10.0",
"errorprone" to if (JavaVersion.current() >= JavaVersion.VERSION_11) "2.20.0" else "2.10.0",
"jdatepicker" to "1.3.4",
"jmockit" to "1.49",
"junit" to "5.9.0",
"junit" to "5.9.3",
"pmd" to "6.42.0",
"spotbugs" to "4.7.1",
"wiremock" to "2.33.2"
"spotbugs" to "4.7.3",
"wiremock" to "2.35.0"
)

dependencies {
Expand Down Expand Up @@ -270,7 +270,7 @@ tasks.withType(SpotBugsTask::class) {

// JaCoCo config
jacoco {
toolVersion = "0.8.7"
toolVersion = "0.8.10"
}

tasks.jacocoTestReport {
Expand Down
4 changes: 2 additions & 2 deletions 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
distributionSha256Sum=f6b8596b10cce501591e92f229816aa4046424f3b24d771751b06779d58c8ec4
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
distributionSha256Sum=03ec176d388f2aa99defcadc3ac6adf8dd2bce5145a129659537c0874dea5ad1
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 165bc1e

Please sign in to comment.