We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1bbfc9 commit 266a21cCopy full SHA for 266a21c
build.gradle
@@ -12,8 +12,7 @@ configurations {
12
compileClasspath.extendsFrom localImplementation
13
}
14
15
-var versionSimple = System.getenv("MOD_VERSION") ?: "0.0.0-local"
16
-version = "${versionSimple}-${minecraft_version}"
+version = (System.getenv("MOD_VERSION") ?: "0.0.0-local") + "-${minecraft_version}"
17
group = mod_group_id
18
base {
19
archivesName = artifact_name
@@ -230,7 +229,7 @@ tasks.withType(ProcessResources).configureEach {
230
229
loader_version_range : loader_version_range,
231
mod_id : mod_id,
232
mod_name : mod_name,
233
- mod_version : versionSimple,
+ mod_version : version,
234
mod_authors : mod_authors,
235
mod_description : mod_description,
236
mod_github : mod_github,
0 commit comments