- use git tag first if available
- update mods.toml
This commit is contained in:
parent
b98c44609d
commit
85d603b219
2
.gitignore
vendored
2
.gitignore
vendored
@ -11,7 +11,7 @@
|
|||||||
.mtj.tmp/
|
.mtj.tmp/
|
||||||
|
|
||||||
# Package Files #
|
# Package Files #
|
||||||
#*.jar
|
*.jar
|
||||||
*.war
|
*.war
|
||||||
*.nar
|
*.nar
|
||||||
*.ear
|
*.ear
|
||||||
|
@ -5,8 +5,10 @@
|
|||||||
![TerraForged Social](https://terraforged.com/curse/header.jpg)
|
![TerraForged Social](https://terraforged.com/curse/header.jpg)
|
||||||
|
|
||||||
#### About:
|
#### About:
|
||||||
TerraForged is a new terrain generation mod for Minecraft (Java Edition), whose aim is to create more
|
TerraForged is an ambitious new terrain generator mod for Minecraft (Java Edition) attempting to
|
||||||
expansive and inspiring worlds to build and explore in!
|
create more immersive, inspiring worlds to explore and build in. Featuring an overhaul of the
|
||||||
|
vanilla generation system, custom terrain shapes, simulated erosion, better rivers, custom
|
||||||
|
decorations, tonnes of configuration options, and more!
|
||||||
|
|
||||||
#### Website(s):
|
#### Website(s):
|
||||||
[https://terraforged.com](https://terraforged.com)
|
[https://terraforged.com](https://terraforged.com)
|
||||||
|
@ -13,7 +13,7 @@ apply plugin: "net.minecraftforge.gradle"
|
|||||||
apply plugin: "maven-publish"
|
apply plugin: "maven-publish"
|
||||||
apply plugin: "eclipse"
|
apply plugin: "eclipse"
|
||||||
|
|
||||||
version = "${mc_version}-${version}${getBuildNumber()}"
|
version = "${mc_version}-${version}${getClassifier()}"
|
||||||
archivesBaseName = "TerraForged"
|
archivesBaseName = "TerraForged"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
@ -98,10 +98,14 @@ publish {
|
|||||||
dependsOn("reobfJar")
|
dependsOn("reobfJar")
|
||||||
}
|
}
|
||||||
|
|
||||||
static def getBuildNumber() {
|
static def getClassifier() {
|
||||||
def buildNumber = System.getenv("BUILD_NUMBER")
|
def buildTag = System.getenv("GIT_TAG_NAME");
|
||||||
if (buildNumber == null) {
|
if (buildTag != null) {
|
||||||
return ""
|
return "-${buildTag}"
|
||||||
}
|
}
|
||||||
|
def buildNumber = System.getenv("BUILD_NUMBER")
|
||||||
|
if (buildNumber != null) {
|
||||||
return "-${buildNumber}"
|
return "-${buildNumber}"
|
||||||
|
}
|
||||||
|
return ""
|
||||||
}
|
}
|
@ -9,4 +9,7 @@ credits="dags"
|
|||||||
logoFile="terraforged.png"
|
logoFile="terraforged.png"
|
||||||
displayURL="https://terraforged.com"
|
displayURL="https://terraforged.com"
|
||||||
issueTrackerURL="https://github.com/TerraForged/TerraForged/issues"
|
issueTrackerURL="https://github.com/TerraForged/TerraForged/issues"
|
||||||
description="A 'terrain first' world generator"
|
description='''
|
||||||
|
Description:
|
||||||
|
A terrain generator attempting to create more immersive, inspiring worlds to explore and build in!
|
||||||
|
'''
|
Loading…
Reference in New Issue
Block a user