You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# What name is the login information inside ~/.m2/settings.xml stored under
20
47
# (see https://gist.github.com/FalsePattern/82d93e3cfab01f671cc5f4a95931cfe3 for an example)
21
-
repositoryName = mvnpattern
48
+
# You can also use the MAVEN_DEPLOY_USER and MAVEN_DEPLOY_PASSWORD environment variables to set this information!
49
+
repositoryName = mavenpatternasdfasdf
22
50
23
-
# What the artifact should be called. These will be the "name" of the published package, suffixed with the minecraft version with a -mc prefix (groupid:artifactid-mcminecraftVersion:version:qualifier).
51
+
# What the artifact should be called. These will be the "name" of the published package, suffixed with the minecraft
52
+
# version with a -mc prefix (groupid:artifactid-mcminecraftVersion:version:qualifier).
24
53
# For instance, the default values this example ships with would turn into com.myname:mymodid-mc1.7.10:version
25
54
# The version is determined automatically from the git version.
26
55
mavenGroupId = com.falsepattern
27
56
mavenArtifactId = falsepatternlib
28
57
58
+
#endregion maven
59
+
60
+
# Modrinth publishing
61
+
#region modrinth
62
+
63
+
# Publishing to modrinth requires you to set the MODRINTH_TOKEN environment variable to your current modrinth API token.
64
+
65
+
# The project's ID on Modrinth. Can be either the slug or the ID.
66
+
# Leave this empty if you don't want to publish on Modrinth.
67
+
modrinthProjectId = eGLBEILf
68
+
69
+
# The project's dependencies on Modrinth. You can use this to refer to other projects on Modrinth.
# In case your mod provides an API for other mods to implement you may declare its package here. Otherwise you can
55
-
# leave this property empty.
56
-
# Example value: apiPackage = api + modGroup = com.myname.mymodid -> com.myname.mymodid.api
57
-
apiPackage =
130
+
#endregion gradletokens
58
131
59
-
# Specify the configuration file for Forge's access transformers here. I must be placed into /src/main/resources/META-INF/
60
-
# Example value: mymodid_at.cfg
61
-
accessTransformersFile =
132
+
# Mixins
133
+
#region mixins
62
134
63
135
# Provides setup for Mixins if enabled. If you don't know what mixins are: Keep it disabled!
64
136
usesMixins = false
@@ -68,22 +140,39 @@ hasMixinDeps = false
68
140
mixinPlugin =
69
141
# Specify the package that contains all of your Mixins. You may only place Mixins in this package or the build will fail!
70
142
mixinsPackage =
71
-
# Specify a preinit mixin here. Preinit mixins should be used very rarely, if at all, so this mixin config will not be managed by the buildscript, only included.
143
+
# Specify a preinit mixin here. Preinit mixins should be used very rarely, if at all, so this mixin config will not be
144
+
# managed by the buildscript, only included.
72
145
mixinPreinitConfig =
73
-
# By default, the buildscript uses mixin-booter-legacy for mixins. You can force the buildscript to use the obsolete SpongeMixins
74
-
# library using this setting.
146
+
# By default, the buildscript uses mixin-booter-legacy for mixins. You can force the buildscript to use the obsolete
147
+
#SpongeMixins library using this setting.
75
148
# MixinBooterLegacy provides Mixins 0.8.2
76
149
# SpongeMixins provides Mixins 0.7.11 on the official version, and Mixins 0.7.12 on the nh version
77
150
useObsoleteSpongeMixins = false
151
+
152
+
#endregion mixins
153
+
154
+
# Coremod and access transformers
155
+
#region core
156
+
157
+
# Specify the configuration file for Forge's access transformers here. I must be placed into /src/main/resources/META-INF/
158
+
# Example value: mymodid_at.cfg
159
+
accessTransformersFile =
160
+
78
161
# Specify the core mod entry class if you use a core mod. This class must implement IFMLLoadingPlugin!
0 commit comments