|
| 1 | +# ExampleMod tag to use as Blowdryer (Spotless, etc.) settings version, leave empty to disable. |
| 2 | +# LOCAL to test local config updates. |
| 3 | +gtnh.settings.blowdryerTag = 0.2.2 |
| 4 | + |
| 5 | +# Human-readable mod name, available for mcmod.info population. |
| 6 | +modName = Chance Cubes |
| 7 | + |
| 8 | +# Case-sensitive identifier string, available for mcmod.info population and used for automatic mixin JSON generation. |
| 9 | +# Conventionally lowercase. |
| 10 | +modId = chancecubes |
| 11 | + |
| 12 | +# Root package of the mod, used to find various classes in other properties, |
| 13 | +# mcmod.info substitution, enabling assertions in run tasks, etc. |
| 14 | +modGroup = chanceCubes |
| 15 | + |
| 16 | +# Whether to use modGroup as the maven publishing group. |
| 17 | +# Due to a history of using JitPack, the default is com.github.GTNewHorizons for all mods. |
| 18 | +useModGroupForPublishing = false |
| 19 | + |
| 20 | +# Updates your build.gradle and settings.gradle automatically whenever an update is available. |
| 21 | +autoUpdateBuildScript = false |
| 22 | + |
| 23 | +# Version of Minecraft to target |
| 24 | +minecraftVersion = 1.7.10 |
| 25 | + |
| 26 | +# Version of Minecraft Forge to target |
| 27 | +forgeVersion = 10.13.4.1614 |
| 28 | + |
| 29 | +# Specify an MCP channel for dependency deobfuscation and the deobfParams task. |
| 30 | +channel = stable |
| 31 | + |
| 32 | +# Specify an MCP mappings version for dependency deobfuscation and the deobfParams task. |
| 33 | +mappingsVersion = 12 |
| 34 | + |
| 35 | +# Defines other MCP mappings for dependency deobfuscation. |
| 36 | +remoteMappings = https\://raw.githubusercontent.com/MinecraftForge/FML/1.7.10/conf/ |
| 37 | + |
| 38 | +# Select a default username for testing your mod. You can always override this per-run by running |
| 39 | +# `./gradlew runClient --username=AnotherPlayer`, or configuring this command in your IDE. |
| 40 | +developmentEnvironmentUserName = Developer |
| 41 | + |
| 42 | +# Enables using modern Java syntax (up to version 17) via Jabel, while still targeting JVM 8. |
| 43 | +# See https://github.com/bsideup/jabel for details on how this works. |
| 44 | +enableModernJavaSyntax = true |
| 45 | + |
| 46 | +# Enables injecting missing generics into the decompiled source code for a better coding experience. |
| 47 | +# Turns most publicly visible List, Map, etc. into proper List<E>, Map<K, V> types. |
| 48 | +enableGenericInjection = true |
| 49 | + |
| 50 | +# Generate a class with a String field for the mod version named as defined below. |
| 51 | +# If generateGradleTokenClass is empty or not missing, no such class will be generated. |
| 52 | +# If gradleTokenVersion is empty or missing, the field will not be present in the class. |
| 53 | +generateGradleTokenClass = chanceCubes.Tags |
| 54 | + |
| 55 | +# Name of the token containing the project's current version to generate/replace. |
| 56 | +gradleTokenVersion = VERSION |
| 57 | + |
| 58 | +# [DEPRECATED] |
| 59 | +# Multiple source files can be defined here by providing a comma-separated list: Class1.java,Class2.java,Class3.java |
| 60 | +# public static final String VERSION = "GRADLETOKEN_VERSION"; |
| 61 | +# The string's content will be replaced with your mod's version when compiled. You should use this to specify your mod's |
| 62 | +# version in @Mod([...], version = VERSION, [...]). |
| 63 | +# Leave these properties empty to skip individual token replacements. |
| 64 | +replaceGradleTokenInFile = |
| 65 | + |
| 66 | +# In case your mod provides an API for other mods to implement you may declare its package here. Otherwise, you can |
| 67 | +# leave this property empty. |
| 68 | +# Example value: (apiPackage = api) + (modGroup = com.myname.mymodid) -> com.myname.mymodid.api |
| 69 | +apiPackage = |
| 70 | + |
| 71 | +# Specify the configuration file for Forge's access transformers here. It must be placed into /src/main/resources/META-INF/ |
| 72 | +# There can be multiple files in a space-separated list. |
| 73 | +# Example value: mymodid_at.cfg nei_at.cfg |
| 74 | +accessTransformersFile = |
| 75 | + |
| 76 | +# Provides setup for Mixins if enabled. If you don't know what mixins are: Keep it disabled! |
| 77 | +usesMixins = false |
| 78 | + |
| 79 | +# Adds some debug arguments like verbose output and class export. |
| 80 | +usesMixinDebug = false |
| 81 | + |
| 82 | +# Specify the location of your implementation of IMixinConfigPlugin. Leave it empty otherwise. |
| 83 | +mixinPlugin = |
| 84 | + |
| 85 | +# Specify the package that contains all of your Mixins. You may only place Mixins in this package or the build will fail! |
| 86 | +mixinsPackage = |
| 87 | + |
| 88 | +# Specify the core mod entry class if you use a core mod. This class must implement IFMLLoadingPlugin! |
| 89 | +# This parameter is for legacy compatibility only |
| 90 | +# Example value: (coreModClass = asm.FMLPlugin) + (modGroup = com.myname.mymodid) -> com.myname.mymodid.asm.FMLPlugin |
| 91 | +coreModClass = |
| 92 | + |
| 93 | +# If your project is only a consolidation of mixins or a core mod and does NOT contain a 'normal' mod ( = some class |
| 94 | +# that is annotated with @Mod) you want this to be true. When in doubt: leave it on false! |
| 95 | +containsMixinsAndOrCoreModOnly = false |
| 96 | + |
| 97 | +# Enables Mixins even if this mod doesn't use them, useful if one of the dependencies uses mixins. |
| 98 | +forceEnableMixins = false |
| 99 | + |
| 100 | +# If enabled, you may use 'shadowCompile' for dependencies. They will be integrated into your jar. It is your |
| 101 | +# responsibility to check the license and request permission for distribution if required. |
| 102 | +usesShadowedDependencies = false |
| 103 | + |
| 104 | +# If disabled, won't remove unused classes from shadowed dependencies. Some libraries use reflection to access |
| 105 | +# their own classes, making the minimization unreliable. |
| 106 | +minimizeShadowedDependencies = true |
| 107 | + |
| 108 | +# If disabled, won't rename the shadowed classes. |
| 109 | +relocateShadowedDependencies = true |
| 110 | + |
| 111 | +# Adds the GTNH maven, CurseMaven, IC2/Player maven, and some more well-known 1.7.10 repositories. |
| 112 | +includeWellKnownRepositories = true |
| 113 | + |
| 114 | +# Change these to your Maven coordinates if you want to publish to a custom Maven repository instead of the default GTNH Maven. |
| 115 | +# Authenticate with the MAVEN_USER and MAVEN_PASSWORD environment variables. |
| 116 | +# If you need a more complex setup disable maven publishing here and add a publishing repository to addon.gradle. |
| 117 | +usesMavenPublishing = true |
| 118 | + |
| 119 | +# Maven repository to publish the mod to. |
| 120 | +# mavenPublishUrl = https\://nexus.gtnewhorizons.com/repository/releases/ |
| 121 | + |
| 122 | +# Publishing to Modrinth requires you to set the MODRINTH_TOKEN environment variable to your current Modrinth API token. |
| 123 | +# |
| 124 | +# The project's ID on Modrinth. Can be either the slug or the ID. |
| 125 | +# Leave this empty if you don't want to publish to Modrinth. |
| 126 | +modrinthProjectId = |
| 127 | + |
| 128 | +# The project's relations on Modrinth. You can use this to refer to other projects on Modrinth. |
| 129 | +# Syntax: scope1-type1:name1;scope2-type2:name2;... |
| 130 | +# Where scope can be one of [required, optional, incompatible, embedded], |
| 131 | +# type can be one of [project, version], |
| 132 | +# and the name is the Modrinth project or version slug/id of the other mod. |
| 133 | +# Example: required-project:fplib;optional-project:gasstation;incompatible-project:gregtech |
| 134 | +# Note: GTNH Mixins is automatically set as a required dependency if usesMixins = true |
| 135 | +modrinthRelations = |
| 136 | + |
| 137 | +# Publishing to CurseForge requires you to set the CURSEFORGE_TOKEN environment variable to one of your CurseForge API tokens. |
| 138 | +# |
| 139 | +# The project's numeric ID on CurseForge. You can find this in the About Project box. |
| 140 | +# Leave this empty if you don't want to publish on CurseForge. |
| 141 | +curseForgeProjectId = |
| 142 | + |
| 143 | +# The project's relations on CurseForge. You can use this to refer to other projects on CurseForge. |
| 144 | +# Syntax: type1:name1;type2:name2;... |
| 145 | +# Where type can be one of [requiredDependency, embeddedLibrary, optionalDependency, tool, incompatible], |
| 146 | +# and the name is the CurseForge project slug of the other mod. |
| 147 | +# Example: requiredDependency:railcraft;embeddedLibrary:cofhlib;incompatible:buildcraft |
| 148 | +# Note: UniMixins is automatically set as a required dependency if usesMixins = true. |
| 149 | +curseForgeRelations = |
| 150 | + |
| 151 | +# Optional parameter to customize the produced artifacts. Use this to preserve artifact naming when migrating older |
| 152 | +# projects. New projects should not use this parameter. |
| 153 | +# customArchiveBaseName = |
| 154 | + |
| 155 | +# Optional parameter to have the build automatically fail if an illegal version is used. |
| 156 | +# This can be useful if you e.g. only want to allow versions in the form of '1.1.xxx'. |
| 157 | +# The check is ONLY performed if the version is a git tag. |
| 158 | +# Note: the specified string must be escaped, so e.g. 1\\.1\\.\\d+ instead of 1\.1\.\d+ |
| 159 | +# versionPattern = |
| 160 | + |
| 161 | +# Uncomment to prevent the source code from being published. |
| 162 | +# noPublishedSources = true |
| 163 | + |
| 164 | +# Uncomment this to disable Spotless checks. |
| 165 | +# This should only be uncommented to keep it easier to sync with upstream/other forks. |
| 166 | +# That is, if there is no other active fork/upstream, NEVER change this. |
| 167 | +# disableSpotless = true |
| 168 | + |
| 169 | +# Uncomment this to disable Checkstyle checks (currently wildcard import check). |
| 170 | +# disableCheckstyle = true |
| 171 | + |
| 172 | +# Override the IDEA build type. Valid values are: "" (leave blank, do not override), "idea" (force use native IDEA build), "gradle" |
| 173 | +# (force use delegated build). |
| 174 | +# This is meant to be set in $HOME/.gradle/gradle.properties. |
| 175 | +# e.g. add "systemProp.org.gradle.project.ideaOverrideBuildType=idea" will override the build type to be native build. |
| 176 | +# WARNING: If you do use this option, it will overwrite whatever you have in your existing projects. This might not be what you want! |
| 177 | +# Usually there is no need to uncomment this here as other developers do not necessarily use the same build type as you. |
| 178 | +# ideaOverrideBuildType = idea |
| 179 | + |
| 180 | +# Whether IDEA should run spotless checks when pressing the Build button. |
| 181 | +# This is meant to be set in $HOME/.gradle/gradle.properties. |
| 182 | +# ideaCheckSpotlessOnBuild = true |
| 183 | + |
0 commit comments