forked from TAIGA/TAIGA
fixed some derps
This commit is contained in:
@@ -95,7 +95,7 @@ task buildInfo {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
version = project.tag ? "${mc_version}-${project.tag}" : "${mc_version}-snapshot"
|
version = project.ext.tag ? "${mc_version}-${project.ext.tag}" : "${mc_version}-snapshot"
|
||||||
|
|
||||||
//noinspection GroovyAssignabilityCheck
|
//noinspection GroovyAssignabilityCheck
|
||||||
processResources {
|
processResources {
|
||||||
@@ -130,11 +130,11 @@ curseforge {
|
|||||||
apiKey = System.getenv().CURSE_API_KEY ? System.getenv().CURSE_API_KEY : "devBuild"
|
apiKey = System.getenv().CURSE_API_KEY ? System.getenv().CURSE_API_KEY : "devBuild"
|
||||||
project {
|
project {
|
||||||
id = '247661'
|
id = '247661'
|
||||||
changelog = project.changes // A file can also be set using: changelog = file('changelog.txt')
|
changelog = project.ext.changes // A file can also be set using: changelog = file('changelog.txt')
|
||||||
releaseType = 'release'
|
releaseType = 'release'
|
||||||
|
|
||||||
mainArtifact(jar) {
|
mainArtifact(jar) {
|
||||||
displayName = "taiga-${project.tag}"
|
displayName = "taiga-${project.ext.tag}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user