update to gradle 8.7

This commit is contained in:
Jörg Prante 2024-04-29 08:13:37 +02:00
parent 55ae303d70
commit 27fd1956a1
7 changed files with 18 additions and 22 deletions

View file

@ -7,7 +7,7 @@ plugins {
wrapper { wrapper {
gradleVersion = libs.versions.gradle.get() gradleVersion = libs.versions.gradle.get()
distributionType = Wrapper.DistributionType.ALL distributionType = Wrapper.DistributionType.BIN
} }
ext { ext {

View file

@ -2,7 +2,8 @@ repositories {
mavenLocal() mavenLocal()
mavenCentral() mavenCentral()
maven { maven {
url 'https://www.dcm4che.org/maven2/' //url 'https://www.dcm4che.org/maven2/'
url 'https://maven.scijava.org/content/repositories/public/'
} }
maven { maven {
url 'https://raw.githubusercontent.com/nroduit/mvn-repo/master/' url 'https://raw.githubusercontent.com/nroduit/mvn-repo/master/'

Binary file not shown.

View file

@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000 networkTimeout=10000
validateDistributionUrl=true validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME

20
gradlew.bat vendored
View file

@ -43,11 +43,11 @@ set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1 %JAVA_EXE% -version >NUL 2>&1
if %ERRORLEVEL% equ 0 goto execute if %ERRORLEVEL% equ 0 goto execute
echo. echo. 1>&2
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. 1>&2
echo. echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. echo location of your Java installation. 1>&2
goto fail goto fail
@ -57,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto execute if exist "%JAVA_EXE%" goto execute
echo. echo. 1>&2
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
echo. echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. echo location of your Java installation. 1>&2
goto fail goto fail

View file

@ -21,13 +21,8 @@ public class GhostscriptLibraryLoader {
}; };
private static final String[] MAC_LIBNAMES = { private static final String[] MAC_LIBNAMES = {
"libgs.9.54.dylib",
"libgs.9.54",
"gs.9.54", "gs.9.54",
"libgs.9.25.dylib", "gs.9.26",
"libgs.9.25",
"gs.9.25",
"libgs.dylib",
"gs", "gs",
}; };

View file

@ -15,9 +15,9 @@ pluginManagement {
dependencyResolutionManagement { dependencyResolutionManagement {
versionCatalogs { versionCatalogs {
libs { libs {
version('gradle', '8.5') version('gradle', '8.7')
version('groovy', '4.0.16') version('groovy', '4.0.21')
version('datastructures', '5.0.6') version('datastructures', '5.0.7')
library('groovy', 'org.apache.groovy', 'groovy').versionRef('groovy') library('groovy', 'org.apache.groovy', 'groovy').versionRef('groovy')
library('groovy-xml', 'org.apache.groovy', 'groovy-xml').versionRef('groovy') library('groovy-xml', 'org.apache.groovy', 'groovy-xml').versionRef('groovy')
library('jna', 'net.java.dev.jna', 'jna').version('5.14.0') library('jna', 'net.java.dev.jna', 'jna').version('5.14.0')