Skip to content

Commit 2a54585

Browse files
committed
Dependency updates
Signed-off-by: Taylor Smock <tsmock@fb.com>
1 parent e2c41e8 commit 2a54585

File tree

2 files changed

+7
-13
lines changed

2 files changed

+7
-13
lines changed

build.gradle.kts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import kotlin.reflect.full.starProjectedType
1212

1313
plugins {
1414
id("application")
15-
id("com.diffplug.spotless") version "6.0.0"
16-
id("com.github.ben-manes.versions") version "0.39.0"
17-
id("com.github.spotbugs") version "4.8.0"
15+
id("com.diffplug.spotless") version "6.2.0"
16+
id("com.github.ben-manes.versions") version "0.41.0"
17+
id("com.github.spotbugs") version "5.0.5"
1818
id("net.ltgt.errorprone") version "2.0.2"
1919
id("org.openstreetmap.josm") version "0.7.1"
2020
id("org.sonarqube") version "3.3"
@@ -57,13 +57,14 @@ java.targetCompatibility = JavaVersion.VERSION_1_8
5757

5858
val versions = mapOf(
5959
"awaitility" to "4.1.1",
60-
"errorprone" to "2.10.0",
60+
// Errorprone 2.11 requires Java 11+
61+
"errorprone" to if (JavaVersion.current() >= JavaVersion.VERSION_11) "2.11.0" else "2.10.0",
6162
"jdatepicker" to "1.3.4",
6263
"jmockit" to "1.49",
6364
"junit" to "5.8.2",
6465
"pmd" to "6.20.0",
65-
"spotbugs" to "4.5.0",
66-
"wiremock" to "2.31.0"
66+
"spotbugs" to "4.5.3",
67+
"wiremock" to "2.32.0"
6768
)
6869

6970
dependencies {

ivy_settings.xml

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)