Skip to content

Commit

Permalink
Update build information
Browse files Browse the repository at this point in the history
Signed-off-by: Taylor Smock <tsmock@meta.com>
  • Loading branch information
tsmock committed Jun 18, 2024
1 parent 7a3a633 commit aad66ec
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {
id("application")
id("com.diffplug.spotless") version "6.25.0"
id("com.github.ben-manes.versions") version "0.51.0"
id("com.github.spotbugs") version "6.0.12"
id("com.github.spotbugs") version "6.0.17"
id("net.ltgt.errorprone") version "3.1.0"
id("org.openstreetmap.josm") version "0.8.2"
id("org.sonarqube") version "4.3.0.3225"
Expand Down Expand Up @@ -57,24 +57,24 @@ java.targetCompatibility = JavaVersion.VERSION_17

val versions = mapOf(
"awaitility" to "4.2.1",
"errorprone" to "2.26.1",
"errorprone" to "2.28.0",
"jdatepicker" to "1.3.4",
"jmockit" to "1.49",
"junit" to "5.10.2",
"pmd" to "6.42.0",
"spotbugs" to "4.8.4",
"wiremock" to "2.35.1"
"spotbugs" to "4.8.6",
"wiremock" to "3.6.0"
)

dependencies {
errorprone("com.google.errorprone:error_prone_core:${versions["errorprone"]}")
testImplementation ("org.openstreetmap.josm:josm-unittest:SNAPSHOT"){ isChanging = true }
testImplementation("com.github.tomakehurst:wiremock-jre8:${versions["wiremock"]}")
testImplementation("org.wiremock:wiremock:${versions["wiremock"]}")

testImplementation("org.junit.jupiter:junit-jupiter-api:${versions["junit"]}")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${versions["junit"]}")
// This can be removed once JOSM drops all JUnit4 support. Nothing remaining in Mapillary uses JUnit4.
testImplementation("org.junit.jupiter:junit-jupiter-params:${versions["junit"]}")
// This can be removed once JOSM drops all JUnit4 support. Nothing remaining in Mapillary uses JUnit4.
testImplementation("org.junit.vintage:junit-vintage-engine:${versions["junit"]}")

testImplementation("org.awaitility:awaitility:${versions["awaitility"]}")
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ plugin.main.version=18940
plugin.compile.version=18940
# The datepicker plugin is currently in the source tree. TODO fix
plugin.requires=apache-commons
plugin.minimum.java.version=17

# Character encoding of Gradle files
systemProp.file.encoding=utf-8
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
<Plugin-Link>${plugin.link}</Plugin-Link>
<Plugin-Icon>${plugin.icon}</Plugin-Icon>
<Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
<Plugin-Minimum-Java-Version>${plugin.minimum.java.version}</Plugin-Minimum-Java-Version>
</manifestEntries>
</archive>
</configuration>
Expand Down

0 comments on commit aad66ec

Please sign in to comment.