2021-06-13 15:02:33 -04:00
|
|
|
buildscript {
|
|
|
|
dependencies {
|
|
|
|
classpath group: 'com.diluv.schoomp', name: 'Schoomp', version: '1.1.0'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-23 08:52:36 -04:00
|
|
|
plugins {
|
2021-06-11 14:33:10 -04:00
|
|
|
id "architectury-plugin" version "3.1-SNAPSHOT"
|
|
|
|
id "dev.architectury.loom" version "0.7.2-SNAPSHOT" apply false
|
2021-06-13 15:02:33 -04:00
|
|
|
id 'com.matthewprenger.cursegradle' version '1.4.0'
|
2020-08-23 08:52:36 -04:00
|
|
|
}
|
|
|
|
|
2021-06-13 15:02:33 -04:00
|
|
|
import com.diluv.schoomp.Webhook
|
|
|
|
import com.diluv.schoomp.message.Message
|
|
|
|
import com.diluv.schoomp.message.embed.Embed
|
|
|
|
|
2021-06-11 14:33:10 -04:00
|
|
|
architectury {
|
|
|
|
minecraft = rootProject.minecraft_version
|
2020-08-23 08:52:36 -04:00
|
|
|
}
|
|
|
|
|
2021-06-11 14:33:10 -04:00
|
|
|
subprojects {
|
|
|
|
apply plugin: "dev.architectury.loom"
|
2020-08-23 08:52:36 -04:00
|
|
|
|
2021-06-11 14:33:10 -04:00
|
|
|
loom {
|
|
|
|
silentMojangMappingsLicense()
|
2021-06-10 10:55:55 -04:00
|
|
|
}
|
2020-08-23 08:52:36 -04:00
|
|
|
|
2021-06-11 14:33:10 -04:00
|
|
|
dependencies {
|
|
|
|
minecraft "com.mojang:minecraft:${rootProject.minecraft_version}"
|
|
|
|
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
|
2021-06-10 10:55:55 -04:00
|
|
|
}
|
2020-08-23 08:52:36 -04:00
|
|
|
}
|
|
|
|
|
2021-06-11 14:33:10 -04:00
|
|
|
allprojects {
|
|
|
|
apply plugin: "java"
|
|
|
|
apply plugin: "architectury-plugin"
|
|
|
|
apply plugin: "maven-publish"
|
2020-08-23 08:52:36 -04:00
|
|
|
|
2021-06-11 14:33:10 -04:00
|
|
|
archivesBaseName = rootProject.archives_base_name
|
2021-06-11 18:15:14 -04:00
|
|
|
version = project.minecraft_version + "-" + rootProject.mod_version
|
2021-06-11 14:33:10 -04:00
|
|
|
group = rootProject.maven_group
|
2020-08-23 08:52:36 -04:00
|
|
|
|
2021-06-11 14:33:10 -04:00
|
|
|
tasks.withType(JavaCompile) {
|
|
|
|
options.encoding = "UTF-8"
|
|
|
|
def targetVersion = 8
|
|
|
|
if (JavaVersion.current().isJava9Compatible()) {
|
|
|
|
options.release = targetVersion
|
2021-06-10 10:55:55 -04:00
|
|
|
}
|
|
|
|
}
|
2021-06-11 14:33:10 -04:00
|
|
|
|
|
|
|
java {
|
|
|
|
withSourcesJar()
|
|
|
|
}
|
2021-06-10 10:55:55 -04:00
|
|
|
}
|
|
|
|
|
2021-06-13 15:02:33 -04:00
|
|
|
task buildAll {
|
|
|
|
dependsOn(":fabric:build")
|
|
|
|
dependsOn(":forge:build")
|
|
|
|
}
|
|
|
|
|
|
|
|
task cleanAll {
|
|
|
|
dependsOn(":common:clean")
|
|
|
|
dependsOn(":fabric:clean")
|
|
|
|
dependsOn(":forge:clean")
|
|
|
|
}
|
|
|
|
|
|
|
|
task publishAll {
|
|
|
|
dependsOn(":fabric:publish")
|
|
|
|
dependsOn(":forge:publish")
|
|
|
|
}
|
|
|
|
|
2021-06-10 10:55:55 -04:00
|
|
|
def changelog(int versions) {
|
|
|
|
try {
|
|
|
|
def changelog = ""
|
|
|
|
def match = 0
|
|
|
|
file("Changelog.txt").eachLine {
|
|
|
|
if (it.matches("${project.project_name} ([0-9].[0-9].[0-9])"))
|
|
|
|
match++
|
|
|
|
if (match <= versions) {
|
|
|
|
changelog += it + "\n"
|
|
|
|
} else
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return changelog + "\n\n"
|
|
|
|
} catch (exception) {
|
|
|
|
return "${project.project_name} ${project.mod_version}\n==========\n"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Splits the changelog into multiple parts if they get bigger than discords embed field size (1024)
|
|
|
|
def discordChangelog() {
|
|
|
|
def changelog = changelog(1)
|
|
|
|
def res = new ArrayList()
|
|
|
|
if (changelog.size() < 1024) {
|
|
|
|
res.add(changelog)
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
def temp = ""
|
|
|
|
changelog.split("\n").each {
|
|
|
|
it = it + "\n"
|
|
|
|
if ((temp.size() + it.size()) >= 1024) {
|
|
|
|
res.add(temp)
|
|
|
|
temp = it
|
|
|
|
} else
|
|
|
|
temp += it
|
|
|
|
}
|
|
|
|
res.add(temp)
|
|
|
|
return res
|
2021-06-13 15:02:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
curseforge {
|
|
|
|
apiKey = findProperty('curseApiToken') ?: 0
|
|
|
|
|
|
|
|
project {
|
|
|
|
id = "${curse_id_fabric}"
|
|
|
|
"${project.curse_versions}".split(', ').each {
|
|
|
|
addGameVersion "${it}"
|
|
|
|
}
|
|
|
|
addGameVersion "Fabric"
|
2021-06-13 17:34:30 -04:00
|
|
|
mainArtifact(project(":fabric").tasks.getByName('remapJar')) {
|
2021-06-13 15:02:33 -04:00
|
|
|
def txt = changelog(1).replace("\n-", "\n\n- ")
|
|
|
|
txt = txt + "\n\n" + "For past versions see: https://github.com/Flemmli97/Flan/blob/1.16/Changelog.txt"
|
|
|
|
changelog = txt
|
|
|
|
changelogType = "markdown"
|
|
|
|
releaseType = 'release'
|
|
|
|
}
|
|
|
|
relations {
|
|
|
|
"${project.curse_dep_fabric}".split(', ').each {
|
|
|
|
requiredDependency "${it}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
project {
|
|
|
|
id = "${curse_id_forge}"
|
|
|
|
"${project.curse_versions}".split(', ').each {
|
|
|
|
addGameVersion "${it}"
|
|
|
|
}
|
|
|
|
addGameVersion "Forge"
|
2021-06-13 17:34:30 -04:00
|
|
|
mainArtifact(project(":forge").tasks.getByName('remapJar')) {
|
2021-06-13 15:02:33 -04:00
|
|
|
def txt = changelog(1).replace("\n-", "\n\n- ")
|
|
|
|
txt = txt + "\n\n" + "For past versions see: https://github.com/Flemmli97/Flan/blob/1.16/Changelog.txt"
|
|
|
|
changelog = txt
|
|
|
|
changelogType = "markdown"
|
|
|
|
releaseType = 'release'
|
|
|
|
}
|
|
|
|
/*relations {
|
|
|
|
"${project.curse_dep_forge}".split(', ').each {
|
|
|
|
requiredDependency "${it}"
|
|
|
|
}
|
|
|
|
}*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.getByName("curseforge").doLast {
|
|
|
|
try {
|
|
|
|
def fileIDFabric = tasks.getByName("curseforge${project.curse_id_fabric}").property('mainArtifact').fileID
|
|
|
|
def fileIDForge = tasks.getByName("curseforge${project.curse_id_forge}").property('mainArtifact').fileID
|
|
|
|
|
|
|
|
def webhook = new Webhook(findProperty('discordHook'), "${project.project_name} Upload")
|
|
|
|
|
|
|
|
def message = new Message()
|
|
|
|
def version = project.curse_versions.split(', ')[0]
|
|
|
|
message.setUsername("Curseforge Release")
|
|
|
|
message.setContent("<@&852113509243682817> ${project.project_name} ${project.mod_version} for Minecraft ${version} has been released!")
|
|
|
|
message.setAvatarUrl("https://cdn.discordapp.com/avatars/680540027255652407/e4b7a058b24843ae13389a9a3cc3ae8c.png?size=128")
|
|
|
|
|
|
|
|
def embed = new Embed()
|
|
|
|
embed.addField('Get the fabric version here (When it is accepted)', "${project.findProperty('curse_page_fabric')}/files/${fileIDFabric}", false)
|
|
|
|
embed.addField('Get the forge version here (When it is accepted)', "${project.findProperty('curse_page_forge')}/files/${fileIDForge}", false)
|
|
|
|
def changelog = discordChangelog()
|
|
|
|
if (changelog.size() == 1)
|
|
|
|
embed.addField('Change Log', "```md\n${changelog.get(0) ?: 'Unavailable :('}```", false)
|
|
|
|
else
|
|
|
|
changelog.forEach {
|
|
|
|
embed.addField("Change Log", "```md\n${it}```", false)
|
|
|
|
}
|
|
|
|
embed.setColor(0xFF8000)
|
|
|
|
message.addEmbed(embed)
|
|
|
|
|
|
|
|
webhook.sendMessage(message)
|
|
|
|
}
|
|
|
|
|
|
|
|
catch (IOException e) {
|
|
|
|
println 'Failed to push to the Discord webhook.'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task buildUploadAll(group: "publishing") {
|
2021-06-13 17:13:28 -04:00
|
|
|
dependsOn cleanAll, buildAll, publishAll, tasks.getByName("curseforge")
|
2021-06-13 15:02:33 -04:00
|
|
|
buildAll.mustRunAfter cleanAll
|
|
|
|
tasks.findByName("curseforge").mustRunAfter publishAll
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.getByName("curseforge").dependsOn buildAll
|
|
|
|
publishAll.dependsOn buildAll
|