diff options
author | Dream Master <dream-master@gmx.net> | 2024-08-09 10:38:20 +0700 |
---|---|---|
committer | Dream Master <dream-master@gmx.net> | 2024-08-09 10:38:20 +0700 |
commit | 2ccf8c43d8d25b10239f5bcc48e5be9ac4a0ab65 (patch) | |
tree | 18519eaf2f8211f027b041db2e6f0b1d638f4caf /gradle.properties | |
parent | 1bd2b04655f096feef84a3f69adb838193374225 (diff) | |
download | GT5-Unofficial-2ccf8c43d8d25b10239f5bcc48e5be9ac4a0ab65.tar.gz GT5-Unofficial-2ccf8c43d8d25b10239f5bcc48e5be9ac4a0ab65.tar.bz2 GT5-Unofficial-2ccf8c43d8d25b10239f5bcc48e5be9ac4a0ab65.zip |
update
Diffstat (limited to 'gradle.properties')
-rw-r--r-- | gradle.properties | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/gradle.properties b/gradle.properties index ab2336ae43..219ee2e97d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -85,6 +85,11 @@ accessTransformersFile = # Provides setup for Mixins if enabled. If you don't know what mixins are: Keep it disabled! usesMixins = false +# Set to a non-empty string to configure mixins in a separate source set under src/VALUE, instead of src/main. +# This can speed up compile times thanks to not running the mixin annotation processor on all input sources. +# Mixin classes will have access to "main" classes, but not the other way around. +separateMixinSourceSet = + # Adds some debug arguments like verbose output and class export. usesMixinDebug = false @@ -117,9 +122,15 @@ minimizeShadowedDependencies = true # If disabled, won't rename the shadowed classes. relocateShadowedDependencies = true -# Adds the GTNH maven, CurseMaven, Modrinth, and some more well-known 1.7.10 repositories. +# Adds CurseMaven, Modrinth, and some more well-known 1.7.10 repositories. includeWellKnownRepositories = true +# A list of repositories to exclude from the includeWellKnownRepositories setting. Should be a space separated +# list of strings, with the acceptable keys being(case does not matter): +# cursemaven +# modrinth +excludeWellKnownRepositories = + # Change these to your Maven coordinates if you want to publish to a custom Maven repository instead of the default GTNH Maven. # Authenticate with the MAVEN_USER and MAVEN_PASSWORD environment variables. # If you need a more complex setup disable maven publishing here and add a publishing repository to addon.gradle. |