more curseGradle fixes
This commit is contained in:
parent
c42f91c966
commit
1ac7bee4cc
|
@ -114,8 +114,8 @@ curseforge {
|
|||
apiKey = CURSEFORGE_API_TOKEN
|
||||
}
|
||||
project {
|
||||
id = '287323'
|
||||
releaseType = 'beta'
|
||||
id = project.curse_id
|
||||
releaseType = project.curse_release_type
|
||||
if (project.hasProperty('changelog_file')) {
|
||||
println("changelog = $changelog_file")
|
||||
changelogType = "markdown"
|
||||
|
@ -124,7 +124,7 @@ curseforge {
|
|||
relations {
|
||||
requiredLibrary 'shadowfacts-forgelin'
|
||||
}
|
||||
mainArtifact(jar) {
|
||||
mainArtifact(shadowJar) {
|
||||
displayName = "MatterLink $version"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -112,8 +112,8 @@ curseforge {
|
|||
apiKey = CURSEFORGE_API_TOKEN
|
||||
}
|
||||
project {
|
||||
id = '287323'
|
||||
releaseType = 'beta'
|
||||
id = project.curse_id
|
||||
releaseType = project.curse_release_type
|
||||
if (project.hasProperty('changelog_file')) {
|
||||
println("changelog = $changelog_file")
|
||||
changelogType = "markdown"
|
||||
|
@ -122,7 +122,7 @@ curseforge {
|
|||
relations {
|
||||
requiredLibrary 'shadowfacts-forgelin'
|
||||
}
|
||||
mainArtifact(jar) {
|
||||
mainArtifact(shadowJar) {
|
||||
displayName = "MatterLink $version"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -97,8 +97,8 @@ curseforge {
|
|||
apiKey = CURSEFORGE_API_TOKEN
|
||||
}
|
||||
project {
|
||||
id = '287323'
|
||||
releaseType = 'beta'
|
||||
id = project.curse_id
|
||||
releaseType = project.curse_release_type
|
||||
if (project.hasProperty('changelog_file')) {
|
||||
println("changelog = $changelog_file")
|
||||
changelogType = "markdown"
|
||||
|
@ -107,7 +107,7 @@ curseforge {
|
|||
relations {
|
||||
requiredLibrary 'shadowfacts-forgelin'
|
||||
}
|
||||
mainArtifact(jar) {
|
||||
mainArtifact(shadowJar) {
|
||||
displayName = "MatterLink $version"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -95,8 +95,8 @@ curseforge {
|
|||
apiKey = CURSEFORGE_API_TOKEN
|
||||
}
|
||||
project {
|
||||
id = '287323'
|
||||
releaseType = 'beta'
|
||||
id = project.curse_id
|
||||
releaseType = project.curse_release_type
|
||||
if (project.hasProperty('changelog_file')) {
|
||||
println("changelog = $changelog_file")
|
||||
changelogType = "markdown"
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
mod_name = MatterLink
|
||||
mod_version = 1.5
|
||||
forgelin_version = 1.6.0
|
||||
forgelin_version = 1.6.0
|
||||
curse_id = 287323
|
||||
curse_release_type = beta
|
Loading…
Reference in New Issue