38 lines
No EOL
996 B
Groovy
38 lines
No EOL
996 B
Groovy
apply plugin: "com.matthewprenger.cursegradle"
|
|
|
|
group = 'RebornCore'
|
|
|
|
loom {
|
|
accessWidenerPath = file("src/main/resources/reborncore.accesswidener")
|
|
}
|
|
|
|
def ENV = System.getenv()
|
|
|
|
curseforge {
|
|
if (ENV.CURSEFORGE_API_KEY) {
|
|
apiKey = ENV.CURSEFORGE_API_KEY
|
|
}
|
|
|
|
project {
|
|
id = "237903"
|
|
changelog = ENV.CHANGELOG ?: "No changelog provided"
|
|
releaseType = ENV.RELEASE_CHANNEL ?: "release"
|
|
addGameVersion "1.18.2"
|
|
addGameVersion "Fabric"
|
|
|
|
mainArtifact(file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar"))
|
|
|
|
afterEvaluate {
|
|
uploadTask.dependsOn("remapJar")
|
|
}
|
|
}
|
|
|
|
options {
|
|
forgeGradleIntegration = false
|
|
}
|
|
}
|
|
|
|
def rcAw = file("src/main/resources/reborncore.accesswidener")
|
|
def trAw = rootProject.file("src/main/resources/techreborn.accesswidener")
|
|
|
|
trAw.text = (rcAw.text + "\n\n# DO NOT EDIT THIS FILE, edit the RebornCore AW, it will automatically be coped to this one.") |