@@ -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'
@@ -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