2021-07-20 20:10:11 +02:00
|
|
|
apply plugin: "com.matthewprenger.cursegradle"
|
|
|
|
|
2021-06-02 22:25:15 +02:00
|
|
|
group = 'RebornCore'
|
|
|
|
|
2021-08-19 12:33:26 +02:00
|
|
|
loom {
|
|
|
|
accessWidenerPath = file("src/main/resources/reborncore.accesswidener")
|
2021-07-20 20:10:11 +02:00
|
|
|
}
|
2021-11-17 22:28:26 +01:00
|
|
|
|
2021-07-20 20:10:11 +02:00
|
|
|
def ENV = System.getenv()
|
|
|
|
|
|
|
|
curseforge {
|
|
|
|
if (ENV.CURSEFORGE_API_KEY) {
|
|
|
|
apiKey = ENV.CURSEFORGE_API_KEY
|
|
|
|
}
|
|
|
|
|
|
|
|
project {
|
|
|
|
id = "237903"
|
2021-07-20 21:00:11 +02:00
|
|
|
changelog = ENV.CHANGELOG ?: "No changelog provided"
|
2021-07-20 20:10:11 +02:00
|
|
|
releaseType = ENV.RELEASE_CHANNEL ?: "release"
|
2023-03-14 20:32:01 +01:00
|
|
|
addGameVersion "1.19.4"
|
2021-07-20 20:10:11 +02:00
|
|
|
addGameVersion "Fabric"
|
|
|
|
|
|
|
|
mainArtifact(file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar"))
|
|
|
|
|
|
|
|
afterEvaluate {
|
|
|
|
uploadTask.dependsOn("remapJar")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
options {
|
|
|
|
forgeGradleIntegration = false
|
|
|
|
}
|
2022-04-21 00:46:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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.")
|