@@ -33,7 +33,7 @@ channel = stable
33
33
mappingsVersion = 12
34
34
35
35
# Defines other MCP mappings for dependency deobfuscation.
36
- remoteMappings = https://raw.githubusercontent.com/MinecraftForge/FML/1.7.10/conf/
36
+ remoteMappings = https\ ://raw.githubusercontent.com/MinecraftForge/FML/1.7.10/conf/
37
37
38
38
# Select a default username for testing your mod. You can always override this per-run by running
39
39
# `./gradlew runClient --username=AnotherPlayer`, or configuring this command in your IDE.
@@ -61,6 +61,9 @@ gradleTokenModId =
61
61
# [DEPRECATED] Mod name replacement token.
62
62
gradleTokenModName =
63
63
64
+ # [DEPRECATED] Mod Group replacement token.
65
+ gradleTokenGroupName =
66
+
64
67
# [DEPRECATED]
65
68
# Multiple source files can be defined here by providing a comma-separated list: Class1.java,Class2.java,Class3.java
66
69
# public static final String VERSION = "GRADLETOKEN_VERSION";
@@ -82,6 +85,11 @@ accessTransformersFile =
82
85
# Provides setup for Mixins if enabled. If you don't know what mixins are: Keep it disabled!
83
86
usesMixins = false
84
87
88
+ # Set to a non-empty string to configure mixins in a separate source set under src/VALUE, instead of src/main.
89
+ # This can speed up compile times thanks to not running the mixin annotation processor on all input sources.
90
+ # Mixin classes will have access to "main" classes, but not the other way around.
91
+ separateMixinSourceSet =
92
+
85
93
# Adds some debug arguments like verbose output and class export.
86
94
usesMixinDebug = false
87
95
@@ -114,16 +122,22 @@ minimizeShadowedDependencies = true
114
122
# If disabled, won't rename the shadowed classes.
115
123
relocateShadowedDependencies = true
116
124
117
- # Adds the GTNH maven, CurseMaven, IC2/Player maven , and some more well-known 1.7.10 repositories.
125
+ # Adds CurseMaven, Modrinth , and some more well-known 1.7.10 repositories.
118
126
includeWellKnownRepositories = true
119
127
128
+ # A list of repositories to exclude from the includeWellKnownRepositories setting. Should be a space separated
129
+ # list of strings, with the acceptable keys being(case does not matter):
130
+ # cursemaven
131
+ # modrinth
132
+ excludeWellKnownRepositories =
133
+
120
134
# Change these to your Maven coordinates if you want to publish to a custom Maven repository instead of the default GTNH Maven.
121
135
# Authenticate with the MAVEN_USER and MAVEN_PASSWORD environment variables.
122
136
# If you need a more complex setup disable maven publishing here and add a publishing repository to addon.gradle.
123
137
usesMavenPublishing = true
124
138
125
139
# Maven repository to publish the mod to.
126
- # mavenPublishUrl = https://nexus.gtnewhorizons.com/repository/releases/
140
+ # mavenPublishUrl = https\ ://nexus.gtnewhorizons.com/repository/releases/
127
141
128
142
# Publishing to Modrinth requires you to set the MODRINTH_TOKEN environment variable to your current Modrinth API token.
129
143
#
@@ -187,5 +201,3 @@ disableCheckstyle = true
187
201
# This is meant to be set in $HOME/.gradle/gradle.properties.
188
202
# ideaCheckSpotlessOnBuild = true
189
203
190
- # Non-GTNH properties
191
- gradleTokenGroupName =
0 commit comments