adding changelog to cursegradle config
This commit is contained in:
parent
f45cd7c9f7
commit
572c326f4c
|
@ -35,7 +35,7 @@ subprojects {
|
||||||
}
|
}
|
||||||
|
|
||||||
version = mc_version + "-" + mod_version
|
version = mc_version + "-" + mod_version
|
||||||
|
|
||||||
apply plugin: 'com.matthewprenger.cursegradle'
|
apply plugin: 'com.matthewprenger.cursegradle'
|
||||||
curseforge {
|
curseforge {
|
||||||
if (project.hasProperty('CURSEFORGE_API_TOKEN') && project.hasProperty('release')) {
|
if (project.hasProperty('CURSEFORGE_API_TOKEN') && project.hasProperty('release')) {
|
||||||
|
@ -44,9 +44,10 @@ subprojects {
|
||||||
project {
|
project {
|
||||||
id = '287323'
|
id = '287323'
|
||||||
releaseType = 'beta'
|
releaseType = 'beta'
|
||||||
if(project.hasProperty('changelog')) {
|
if(project.hasProperty('changelog_file')) {
|
||||||
|
println("changelog = $changelog_file")
|
||||||
changelogType = "markdown"
|
changelogType = "markdown"
|
||||||
changelog = changelog
|
changelog = file(changelog_file)
|
||||||
}
|
}
|
||||||
relations {
|
relations {
|
||||||
requiredLibrary 'shadowfacts-forgelin'
|
requiredLibrary 'shadowfacts-forgelin'
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
mod_version = 1.2.4
|
mod_version = 1.2.4a
|
Loading…
Reference in New Issue