Skip to content

Commit 01ec878

Browse files
Update build script version to 1743737794 (#299)
Co-authored-by: tier940 <[email protected]> Co-authored-by: tier940 <[email protected]>
1 parent 2f92554 commit 01ec878

File tree

4 files changed

+218
-216
lines changed

4 files changed

+218
-216
lines changed

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//version: 1725973221
1+
//version: 1743737794
22
/*
33
* DO NOT CHANGE THIS FILE!
44
* Also, you may replace this file at any time if there is an update available.
@@ -80,6 +80,7 @@ propertyDefaultIfUnset("includeWellKnownRepositories", true)
8080
propertyDefaultIfUnset("includeCommonDevEnvMods", true)
8181
propertyDefaultIfUnset("stripForgeRequirements", false)
8282
propertyDefaultIfUnset("noPublishedSources", false)
83+
propertyDefaultIfUnset("mixinProviderSpec", "zone.rong:mixinbooter:10.6")
8384
propertyDefaultIfUnset("forceEnableMixins", false)
8485
propertyDefaultIfUnset("mixinConfigRefmap", "mixins.${project.modId}.refmap.json")
8586
propertyDefaultIfUnsetWithEnvVar("enableCoreModDebug", false, "CORE_MOD_DEBUG")
@@ -518,7 +519,6 @@ configurations {
518519
testRuntimeClasspath.extendsFrom(runtimeOnlyNonPublishable)
519520
}
520521

521-
String mixinProviderSpec = 'zone.rong:mixinbooter:9.1'
522522
dependencies {
523523
if (usesMixins.toBoolean()) {
524524
annotationProcessor 'org.ow2.asm:asm-debug-all:5.2'
@@ -871,9 +871,9 @@ if (enableJava17RunTasks.toBoolean()) {
871871
dependencies {
872872
if (modId != 'lwjgl3ify') {
873873
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") {
876875
transitive = false
876+
}
877877
}
878878
}
879879

@@ -1009,7 +1009,7 @@ abstract class RunHotswappableMinecraftTask extends RunMinecraftTask {
10091009

10101010
if (project.usesMixins.toBoolean()) {
10111011
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))
10131013
mixinCfg.canBeConsumed = false
10141014
mixinCfg.canBeResolved = true
10151015
mixinCfg.transitive = false

0 commit comments

Comments
 (0)