Skip to content

Commit c89aba5

Browse files
committed
Bump dependencies
1 parent efc54d0 commit c89aba5

File tree

5 files changed

+17
-16
lines changed

5 files changed

+17
-16
lines changed

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ plugins {
55
id 'java-library'
66
id 'maven-publish'
77
id 'eclipse'
8+
id 'com.github.ben-manes.versions' version '0.51.0'
89
id 'com.github.johnrengelman.shadow' version '8.1.1'
910
id 'net.minecraftforge.licenser' version '1.0.1'
1011
id 'net.minecraftforge.gradleutils' version '[2.3,2.4)'

gradle/wrapper/gradle-wrapper.jar

-19.8 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew.bat

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ set JAVA_EXE=java.exe
4343
%JAVA_EXE% -version >NUL 2>&1
4444
if %ERRORLEVEL% equ 0 goto execute
4545

46-
echo.
47-
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
48-
echo.
49-
echo Please set the JAVA_HOME variable in your environment to match the
50-
echo location of your Java installation.
46+
echo. 1>&2
47+
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
48+
echo. 1>&2
49+
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
50+
echo location of your Java installation. 1>&2
5151

5252
goto fail
5353

@@ -57,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
5757

5858
if exist "%JAVA_EXE%" goto execute
5959

60-
echo.
61-
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
62-
echo.
63-
echo Please set the JAVA_HOME variable in your environment to match the
64-
echo location of your Java installation.
60+
echo. 1>&2
61+
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
62+
echo. 1>&2
63+
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
64+
echo location of your Java installation. 1>&2
6565

6666
goto fail
6767

settings.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,24 @@ plugins {
1212
dependencyResolutionManagement {
1313
versionCatalogs {
1414
libs {
15-
version('asm', '9.6')
15+
version('asm', '9.7')
1616
library('asm', 'org.ow2.asm', 'asm' ).versionRef('asm')
1717
library('asm-tree', 'org.ow2.asm', 'asm-tree' ).versionRef('asm')
1818
library('asm-commons', 'org.ow2.asm', 'asm-commons').versionRef('asm')
1919
bundle('asm', ['asm', 'asm-tree', 'asm-commons'])
2020

21-
version('junit', '5.10.0')
21+
version('junit', '5.10.2')
2222
library('junit-api', 'org.junit.jupiter', 'junit-jupiter-api').versionRef('junit')
2323
library('junit-engine', 'org.junit.jupiter', 'junit-jupiter-engine').versionRef('junit')
24-
library('junit-platform-launcher', 'org.junit.platform:junit-platform-launcher:1.10.0')
24+
library('junit-platform-launcher', 'org.junit.platform:junit-platform-launcher:1.10.2')
2525
bundle('junit-runtime', ['junit-engine', 'junit-platform-launcher'])
2626

2727
library('unsafe', 'net.minecraftforge:unsafe:0.9.2')
2828
library('modlauncher', 'net.minecraftforge:modlauncher:10.1.1') // Needs securemodules
2929
library('securemodules', 'net.minecraftforge:securemodules:2.2.2') // Needs unsafe
3030
library('gson', 'com.google.code.gson:gson:2.10.1')
31-
library('jopt-simple', 'net.sf.jopt-simple:jopt-simple:5.0.4')
32-
library('nulls', 'org.jetbrains:annotations:23.0.0')
31+
library('jopt-simple', 'net.sf.jopt-simple:jopt-simple:6.0-alpha-3')
32+
library('nulls', 'org.jetbrains:annotations:24.1.0')
3333

3434
version('log4j', '2.19.0')
3535
library('log4j-api', 'org.apache.logging.log4j', 'log4j-api' ).versionRef('log4j')

0 commit comments

Comments
 (0)