@@ -43,6 +43,10 @@ developmentEnvironmentUserName = Developer
4343# See https://github.com/bsideup/jabel for details on how this works.
4444enableModernJavaSyntax = false
4545
46+ # If set, ignores the above setting and compiles with the given toolchain. This may cause unexpected issues,
47+ # and should *not* be used in most situations. -1 disables this.
48+ # forceToolchainVersion = -1
49+
4650# Enables injecting missing generics into the decompiled source code for a better coding experience.
4751# Turns most publicly visible List, Map, etc. into proper List<E>, Map<K, V> types.
4852enableGenericInjection = true
@@ -96,7 +100,9 @@ usesMixinDebug = true
96100# Specify the location of your implementation of IMixinConfigPlugin. Leave it empty otherwise.
97101mixinPlugin =
98102
99- # Specify the package that contains all of your Mixins. You may only place Mixins in this package or the build will fail!
103+ # Specify the package that contains all of your Mixins. The package must exist or
104+ # the build will fail. If you have a package property defined in your mixins.<modid>.json,
105+ # it must match with this or the build will fail.
100106mixinsPackage = mixins
101107
102108# Specify the core mod entry class if you use a core mod. This class must implement IFMLLoadingPlugin!
@@ -172,6 +178,12 @@ curseForgeRelations =
172178# projects. New projects should not use this parameter.
173179# customArchiveBaseName =
174180
181+ # Optional parameter to customize the default working directory used by the runClient* tasks. Relative to the project directory.
182+ # runClientWorkingDirectory = run/client
183+
184+ # Optional parameter to customize the default working directory used by the runServer* tasks. Relative to the project directory.
185+ # runServerWorkingDirectory = run/server
186+
175187# Optional parameter to have the build automatically fail if an illegal version is used.
176188# This can be useful if you e.g. only want to allow versions in the form of '1.1.xxx'.
177189# The check is ONLY performed if the version is a git tag.
@@ -204,3 +216,5 @@ disableCheckstyle = true
204216# Non-GTNH properties
205217hasMixinDeps = false
206218mixinPluginMinimumVersion = 0.7.11
219+ org.gradle.configuration-cache = true
220+ org.gradle.parallel = true
0 commit comments