diff options
Diffstat (limited to 'gradle.properties')
-rw-r--r-- | gradle.properties | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gradle.properties b/gradle.properties index 2ba431d3a7..7fea7b33f2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -53,7 +53,9 @@ mixinsPackage = coreModClass = # If your project is only a consolidation of mixins or a core mod and does NOT contain a 'normal' mod ( = some class # that is annotated with @Mod) you want this to be true. When in doubt: leave it on false! -containsMixinsAndOrCoreModOnly = true +containsMixinsAndOrCoreModOnly = false + +# Enables Mixins even if this mod doesn't use them, useful if one of the dependencies uses mixins. forceEnableMixins = true # If enabled, you may use 'shadowImplementation' for dependencies. They will be integrated in your jar. It is your @@ -63,4 +65,4 @@ usesShadowedDependencies = false # Uncomment this to disable spotless checks # This should only be uncommented to keep it easier to sync with upstream/other forks. # That is, if there is no other active fork/upstream, NEVER change this. -disableSpotless = true +#disableSpotless = true |