@@ -41,17 +41,13 @@ developmentEnvironmentUserName = Developer
4141# Example value: -Dmixin.debug.verify=true;-XX:+UnlockExperimentalVMOptions
4242additionalJavaArguments =
4343
44- # Enables using modern java syntax (up to version 17) via Jabel, while still targeting JVM 8.
44+ # Enables using modern java syntax via Jabel, while still targeting JVM 8.
4545# See https://github.com/bsideup/jabel for details on how this works.
46- # Using this requires that you use a Java 17 JDK for development.
46+ # RetroFuturaGradle 2.x requires a Java 25 JDK, which is also used as the compilation toolchain.
47+ # Byte Buddy (used by Jabel) needs '-Dnet.bytebuddy.experimental=true' (set in gradle.properties)
48+ # to run on Java 25. The produced jar still targets Java 8 bytecode.
4749enableModernJavaSyntax = true
4850
49- # Enables runClient/runServer tasks for Java 17 and Java 21 using LWJGL3ify.
50- # This is primarily used to test if your mod is compatible with platforms running
51- # Minecraft 1.12.2 on modern versions of Java and LWJGL, and assist in fixing any problems with it.
52- # Using this requires that you use a Java 17/Java 21 JDK for development.
53- enableJava17RunTasks = false
54-
5551# Generate a class with String fields for the mod id, name and version named with the fields below
5652generateGradleTokenClass = com.github.gtexpert.testmod.Tags
5753gradleTokenModId = MODID
@@ -74,7 +70,7 @@ accessTransformersFile =
7470# Provides setup for Mixins if enabled. If you don't know what mixins are: Keep it disabled!
7571usesMixins = false
7672# Mixin Provider to use. Primarily changed when needing to use a different version.
77- mixinProviderSpec = zone.rong:mixinbooter:10.6
73+ mixinProviderSpec = zone.rong:mixinbooter:10.7
7874# Specify the package that contains all of your Mixins. You may only place Mixins in this package or the build will fail!
7975mixinsPackage =
8076# Location of the mixin config refmap. If left, blank, defaults to "mixins.${modId}.refmap.json". Target file must have the "json" extension.
0 commit comments