@@ -52,6 +52,8 @@ accessTransformersFile = gregtech_at.cfg
5252usesMixins = false
5353# Specify the package that contains all of your Mixins. You may only place Mixins in this package or the build will fail!
5454mixinsPackage =
55+ # Automatically generates a mixin config json if enabled, with the name mixins.modid.json
56+ generateMixinConfig =false
5557# Specify the core mod entry class if you use a core mod. This class must implement IFMLLoadingPlugin!
5658# Example value: coreModClass = asm.FMLPlugin + modGroup = com.myname.mymodid -> com.myname.mymodid.asm.FMLPlugin
5759coreModClass = asm.GregTechLoadingPlugin
@@ -75,6 +77,7 @@ includeWellKnownRepositories = true
7577# Overrides the above setting to be always true, as these repositories are needed to fetch the mods
7678includeCommonDevEnvMods = true
7779
80+
7881# If enabled, you may use 'shadowCompile' for dependencies. They will be integrated in your jar. It is your
7982# responsibility check the licence and request permission for distribution, if required.
8083usesShadowedDependencies = false
@@ -120,6 +123,7 @@ curseForgeProjectId =
120123curseForgeRelations = requiredDependency:codechicken-lib-1-8;incompatible:gregtechce
121124
122125# This project's release type on CurseForge and/or Modrinth
126+ # Alternatively this can be set with the 'RELEASE_TYPE' environment variable.
123127# Allowed types: release, beta, alpha
124128releaseType = beta
125129
@@ -129,6 +133,17 @@ generateDefaultChangelog = false
129133
130134# Prevent the source code from being published
131135noPublishedSources = false
136+ # Publish to a custom maven location. Follows a few rules:
137+ # Group ID can be set with the 'ARTIFACT_GROUP_ID' environment variable, default to 'project.group'
138+ # Artifact ID can be set with the 'ARTIFACT_ID' environment variable, default to 'project.name'
139+ # Version can be set with the 'RELEASE_VERSION' environment variable, default to 'modVersion'
140+ # For maven credentials:
141+ # Username is set with the 'MAVEN_USER' environment variable, default to "NONE"
142+ # Password is set with the 'MAVEN_PASSWORD' environment variable, default to "NONE"
143+ customMavenPublishUrl =
144+ # The group for maven artifacts. Defaults to the 'project.modGroup' until the last '.' (if any).
145+ # So 'mymod' becomes 'mymod' and 'com.myname.mymodid' 'becomes com.myname'
146+ mavenArtifactGroup =
132147
133148# Enable spotless checks
134149# Enforces code formatting on your source code
0 commit comments