Skip to content

Commit 5b859b2

Browse files
Update build script version to 1743737794 (#18)
Co-authored-by: tier940 <[email protected]> Co-authored-by: tier940 <[email protected]>
1 parent 6380894 commit 5b859b2

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
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

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@ accessTransformersFile =
8787

8888
# Provides setup for Mixins if enabled. If you don't know what mixins are: Keep it disabled!
8989
usesMixins = false
90+
# Mixin Provider to use. Primarily changed when needing to use a different version.
91+
mixinProviderSpec = zone.rong:mixinbooter:9.4
9092
# Specify the package that contains all of your Mixins. You may only place Mixins in this package or the build will fail!
9193
mixinsPackage =
9294
# Location of the mixin config refmap. If left, blank, defaults to "mixins.${modId}.refmap.json". Target file must have the "json" extension.

renovate.json

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,15 @@
99
],
1010
"automerge": false,
1111
"packageRules": [
12-
{
13-
"matchFiles": [
14-
"build.gradle",
15-
"dependencies.gradle"
16-
],
17-
"enabled": false
18-
},
1912
{
2013
"matchDatasources": ["gradle-version"],
2114
"registryUrls": [
22-
"https://domain.tld/repository/custom-gradle-wrapper/versions.json"
15+
"https://www.cursemaven.com",
16+
"https://api.modrinth.com/maven",
17+
"https://maven.cleanroommc.com",
18+
"https://maven.blamejared.com",
19+
"https://nexus.gtnewhorizons.com/repository/public/",
20+
"https://maven.gtceu.com"
2321
]
2422
},
2523
{

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ gradleEnterprise {
3535

3636
blowdryerSetup {
3737
repoSubfolder 'spotless'
38-
github 'GTModpackTeam/Buildscripts', 'tag', 'v1.0.1'
38+
github 'GTModpackTeam/Buildscripts', 'tag', 'v1.0.3'
3939
}
4040

4141
rootProject.name = rootProject.projectDir.getName()

0 commit comments

Comments
 (0)