kopia lustrzana https://github.com/JOSM/MapWithAI
Gradle: Dependency updates + fix for errorprone
Signed-off-by: Taylor Smock <tsmock@fb.com>pull/1/head
rodzic
e092718f2f
commit
a0ed7272aa
16
build.gradle
16
build.gradle
|
@ -10,12 +10,12 @@ plugins {
|
||||||
id "jacoco"
|
id "jacoco"
|
||||||
id "maven-publish"
|
id "maven-publish"
|
||||||
id "pmd"
|
id "pmd"
|
||||||
id "com.github.ben-manes.versions" version "0.38.0"
|
id "com.github.ben-manes.versions" version "0.39.0"
|
||||||
id "com.github.spotbugs" version "4.7.1"
|
id "com.github.spotbugs" version "4.7.3"
|
||||||
id "org.openstreetmap.josm" version "0.7.1"
|
id "org.openstreetmap.josm" version "0.7.1"
|
||||||
id "net.ltgt.errorprone" version "2.0.1"
|
id "net.ltgt.errorprone" version "2.0.2"
|
||||||
id "com.diffplug.spotless" version "5.12.5"
|
id "com.diffplug.spotless" version "5.15.0"
|
||||||
id "org.sonarqube" version "3.2.0"
|
id "org.sonarqube" version "3.3"
|
||||||
//id 'de.aaschmid.cpd' version '2.0'
|
//id 'de.aaschmid.cpd' version '2.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,12 +71,12 @@ sourceSets {
|
||||||
|
|
||||||
def versions = [
|
def versions = [
|
||||||
awaitility: "4.1.0",
|
awaitility: "4.1.0",
|
||||||
errorprone: "2.4.0",
|
errorprone: "2.9.0",
|
||||||
jacoco: "0.8.5",
|
jacoco: "0.8.5",
|
||||||
jmockit: "1.49",
|
jmockit: "1.49",
|
||||||
junit: "5.7.1",
|
junit: "5.7.2",
|
||||||
pmd: "6.20.0",
|
pmd: "6.20.0",
|
||||||
spotbugs: "4.2.3",
|
spotbugs: "4.4.0",
|
||||||
wiremock: "2.27.2",
|
wiremock: "2.27.2",
|
||||||
findsecbugs: "1.11.0",
|
findsecbugs: "1.11.0",
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionSha256Sum=765442b8069c6bee2ea70713861c027587591c6b1df2c857a23361512560894e
|
distributionSha256Sum=f581709a9c35e9cb92e16f585d2c4bc99b2b1a5f85d2badbd3dc6bff59e1e6dd
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|
|
@ -183,7 +183,7 @@ public class MapWithAILayerInfo {
|
||||||
// Ensure that the cache is initialized prior to running in the fork join pool
|
// Ensure that the cache is initialized prior to running in the fork join pool
|
||||||
// on webstart
|
// on webstart
|
||||||
if (System.getSecurityManager() != null) {
|
if (System.getSecurityManager() != null) {
|
||||||
ESRISourceReader.SOURCE_CACHE.getClass();
|
Logging.trace("MapWithAI loaded: {0}", ESRISourceReader.SOURCE_CACHE.getClass());
|
||||||
}
|
}
|
||||||
loadDefaults(false, ForkJoinPool.commonPool(), fastFail, listener);
|
loadDefaults(false, ForkJoinPool.commonPool(), fastFail, listener);
|
||||||
}
|
}
|
||||||
|
|
Ładowanie…
Reference in New Issue