File tree Expand file tree Collapse file tree 4 files changed +8
-6
lines changed
Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -25,11 +25,11 @@ jobs:
2525
2626 steps :
2727 - uses : actions/checkout@v4
28- - name : Set up JDK 21
28+ - name : Set up JDK 25
2929 uses : actions/setup-java@v4
3030 with :
3131 distribution : ' temurin'
32- java-version : 21
32+ java-version : 25
3333
3434 - name : Setup Gradle
3535 uses : gradle/actions/setup-gradle@v4
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
55
66 // https://github.com/ReplayMod/preprocessor
77 // https://github.com/Fallen-Breath/preprocessor
8- id ' com.replaymod.preprocess' version ' d452ef7612 '
8+ id ' com.replaymod.preprocess' version ' 48cb0c80f7 '
99
1010 // https://github.com/Fallen-Breath/yamlang
1111 id ' me.fallenbreath.yamlang' version ' 1.5.0' apply false
Original file line number Diff line number Diff line change @@ -64,7 +64,9 @@ dependencies {
6464String MIXIN_CONFIG_PATH = ' template_mod.mixins.json'
6565String LANG_DIR = ' assets/template_mod/lang'
6666JavaVersion JAVA_COMPATIBILITY
67- if (mcVersion >= 12005 ) {
67+ if (mcVersion >= 260000 ) {
68+ JAVA_COMPATIBILITY = JavaVersion . VERSION_25
69+ } else if (mcVersion >= 12005 ) {
6870 JAVA_COMPATIBILITY = JavaVersion . VERSION_21
6971} else if (mcVersion >= 11800 ) {
7072 JAVA_COMPATIBILITY = JavaVersion . VERSION_17
Original file line number Diff line number Diff line change 11before_install :
2- - sdk install java 21 .0.9 -tem
3- - sdk use java 21 .0.9 -tem
2+ - sdk install java 25 .0.1 -tem
3+ - sdk use java 25 .0.1 -tem
You can’t perform that action at this time.
0 commit comments