|
1 | | -//version: 1726584787 |
| 1 | +//version: 1743737794 |
2 | 2 | /* |
3 | 3 | * DO NOT CHANGE THIS FILE! |
4 | 4 | * Also, you may replace this file at any time if there is an update available. |
@@ -80,6 +80,7 @@ propertyDefaultIfUnset("includeWellKnownRepositories", true) |
80 | 80 | propertyDefaultIfUnset("includeCommonDevEnvMods", true) |
81 | 81 | propertyDefaultIfUnset("stripForgeRequirements", false) |
82 | 82 | propertyDefaultIfUnset("noPublishedSources", false) |
| 83 | +propertyDefaultIfUnset("mixinProviderSpec", "zone.rong:mixinbooter:10.6") |
83 | 84 | propertyDefaultIfUnset("forceEnableMixins", false) |
84 | 85 | propertyDefaultIfUnset("mixinConfigRefmap", "mixins.${project.modId}.refmap.json") |
85 | 86 | propertyDefaultIfUnsetWithEnvVar("enableCoreModDebug", false, "CORE_MOD_DEBUG") |
@@ -518,7 +519,6 @@ configurations { |
518 | 519 | testRuntimeClasspath.extendsFrom(runtimeOnlyNonPublishable) |
519 | 520 | } |
520 | 521 |
|
521 | | -String mixinProviderSpec = 'zone.rong:mixinbooter:9.1' |
522 | 522 | dependencies { |
523 | 523 | if (usesMixins.toBoolean()) { |
524 | 524 | annotationProcessor 'org.ow2.asm:asm-debug-all:5.2' |
@@ -871,9 +871,9 @@ if (enableJava17RunTasks.toBoolean()) { |
871 | 871 | dependencies { |
872 | 872 | if (modId != 'lwjgl3ify') { |
873 | 873 | java17Dependencies("io.github.twilightflower:lwjgl3ify:1.0.0") |
874 | | - } |
875 | | - java17PatchDependencies("io.github.twilightflower:lwjgl3ify:1.0.0:forgePatches") { |
| 874 | + java17PatchDependencies("io.github.twilightflower:lwjgl3ify:1.0.0:forgePatches") { |
876 | 875 | transitive = false |
| 876 | + } |
877 | 877 | } |
878 | 878 | } |
879 | 879 |
|
@@ -1009,7 +1009,7 @@ abstract class RunHotswappableMinecraftTask extends RunMinecraftTask { |
1009 | 1009 |
|
1010 | 1010 | if (project.usesMixins.toBoolean()) { |
1011 | 1011 | this.extraJvmArgs.addAll(project.provider(() -> { |
1012 | | - def mixinCfg = project.configurations.detachedConfiguration(project.dependencies.create(project.mixinProviderSpec)) |
| 1012 | + def mixinCfg = project.configurations.detachedConfiguration(project.dependencies.create(mixinProviderSpec)) |
1013 | 1013 | mixinCfg.canBeConsumed = false |
1014 | 1014 | mixinCfg.canBeResolved = true |
1015 | 1015 | mixinCfg.transitive = false |
|
0 commit comments