Dependency updates

Signed-off-by: Taylor Smock <tsmock@meta.com>
pull/8/head
Taylor Smock 2022-12-06 08:52:26 -07:00
rodzic ee0c576ee7
commit 0fcc9e8ee0
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 233BB2E466604E27
5 zmienionych plików z 25 dodań i 20 usunięć

Wyświetl plik

@ -1,16 +1,16 @@
import groovy.xml.XmlParser import groovy.xml.XmlParser
plugins { plugins {
id "com.diffplug.spotless" version "6.10.0" id "com.diffplug.spotless" version "6.12.0"
id "com.github.ben-manes.versions" version "0.42.0" id "com.github.ben-manes.versions" version "0.44.0"
id "com.github.spotbugs" version "5.0.10" id "com.github.spotbugs" version "5.0.13"
// id "de.aaschmid.cpd" version "3.3" // id "de.aaschmid.cpd" version "3.3"
id "eclipse" id "eclipse"
id "jacoco" id "jacoco"
id "java" id "java"
id "java-test-fixtures" /* Used for publishing test fixtures package */ id "java-test-fixtures" /* Used for publishing test fixtures package */
id "maven-publish" id "maven-publish"
id "net.ltgt.errorprone" version "2.0.2" id "net.ltgt.errorprone" version "3.0.1"
id "org.openstreetmap.josm" version "0.8.2" id "org.openstreetmap.josm" version "0.8.2"
id "org.sonarqube" version "3.3" id "org.sonarqube" version "3.3"
id "pmd" id "pmd"
@ -29,23 +29,20 @@ repositories {
def versions = [ def versions = [
awaitility: "4.2.0", awaitility: "4.2.0",
equalsverifier: "3.10.1", equalsverifier: "3.12.1",
// Errorprone 2.11 requires Java 11+ // Errorprone 2.11 requires Java 11+
errorprone: (JavaVersion.toVersion(getJavaVersion()) >= JavaVersion.VERSION_11) ? "2.15.0" : "2.10.0", errorprone: (JavaVersion.toVersion(getJavaVersion()) >= JavaVersion.VERSION_11) ? "2.16.0" : "2.10.0",
findsecbugs: "1.12.0", findsecbugs: "1.12.0",
jacoco: "0.8.7", jacoco: "0.8.7",
jmockit: "1.49.a", jmockit: "1.49.a",
josm: properties.get("plugin.compile.version"), josm: properties.get("plugin.compile.version"),
junit: "5.9.0", junit: "5.9.1",
pmd: "6.20.0", pmd: "6.20.0",
spotbugs: "4.7.1", spotbugs: "4.7.3",
wiremock: "2.33.2", wiremock: "2.35.0",
] ]
dependencies { dependencies {
if (!JavaVersion.toVersion(getJavaVersion()).isJava9Compatible()) {
errorproneJavac("com.google.errorprone:javac:9+181-r4173-1")
}
spotbugsPlugins "com.h3xstream.findsecbugs:findsecbugs-plugin:${versions.findsecbugs}" spotbugsPlugins "com.h3xstream.findsecbugs:findsecbugs-plugin:${versions.findsecbugs}"
errorprone("com.google.errorprone:error_prone_core:${versions.errorprone}") errorprone("com.google.errorprone:error_prone_core:${versions.errorprone}")

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionSha256Sum=f6b8596b10cce501591e92f229816aa4046424f3b24d771751b06779d58c8ec4 distributionSha256Sum=7ba68c54029790ab444b39d7e293d3236b2632631fb5f2e012bb28b4ff669e4b
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists

6
gradlew vendored
Wyświetl plik

@ -205,6 +205,12 @@ set -- \
org.gradle.wrapper.GradleWrapperMain \ org.gradle.wrapper.GradleWrapperMain \
"$@" "$@"
# Stop when "xargs" is not available.
if ! command -v xargs >/dev/null 2>&1
then
die "xargs is not available"
fi
# Use "xargs" to parse quoted args. # Use "xargs" to parse quoted args.
# #
# With -n1 it outputs one arg per line, with the quotes and backslashes removed. # With -n1 it outputs one arg per line, with the quotes and backslashes removed.

14
gradlew.bat vendored
Wyświetl plik

@ -14,7 +14,7 @@
@rem limitations under the License. @rem limitations under the License.
@rem @rem
@if "%DEBUG%" == "" @echo off @if "%DEBUG%"=="" @echo off
@rem ########################################################################## @rem ##########################################################################
@rem @rem
@rem Gradle startup script for Windows @rem Gradle startup script for Windows
@ -25,7 +25,7 @@
if "%OS%"=="Windows_NT" setlocal if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0 set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=. if "%DIRNAME%"=="" set DIRNAME=.
set APP_BASE_NAME=%~n0 set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME% set APP_HOME=%DIRNAME%
@ -40,7 +40,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1 %JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto execute if %ERRORLEVEL% equ 0 goto execute
echo. echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
@ -75,13 +75,15 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
:end :end
@rem End local scope for the variables with windows NT shell @rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd if %ERRORLEVEL% equ 0 goto mainEnd
:fail :fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code! rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 set EXIT_CODE=%ERRORLEVEL%
exit /b 1 if %EXIT_CODE% equ 0 set EXIT_CODE=1
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
exit /b %EXIT_CODE%
:mainEnd :mainEnd
if "%OS%"=="Windows_NT" endlocal if "%OS%"=="Windows_NT" endlocal