2020-07-01 13:58:47 -04:00
|
|
|
buildscript {
|
|
|
|
dependencies {
|
|
|
|
classpath 'org.kohsuke:github-api:1.114'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-05 09:54:00 -05:00
|
|
|
plugins {
|
2020-10-11 16:28:03 -04:00
|
|
|
id "java"
|
|
|
|
id "eclipse"
|
|
|
|
id "idea"
|
|
|
|
id "maven-publish"
|
2020-12-12 10:24:19 -05:00
|
|
|
id "fabric-loom" version "0.5.43" apply false
|
2020-10-11 16:28:03 -04:00
|
|
|
id "net.minecrell.licenser" version "0.4.1"
|
2019-05-11 02:55:17 -04:00
|
|
|
id "org.ajoberstar.grgit" version "3.1.1"
|
2020-10-11 16:28:03 -04:00
|
|
|
id "com.matthewprenger.cursegradle" version "1.4.0"
|
2018-11-05 09:54:00 -05:00
|
|
|
}
|
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
def ENV = System.getenv()
|
2018-11-05 09:54:00 -05:00
|
|
|
|
2019-07-14 12:42:09 -04:00
|
|
|
class Globals {
|
2021-01-05 07:22:26 -05:00
|
|
|
static def baseVersion = "0.29.3"
|
2020-12-16 14:06:02 -05:00
|
|
|
static def mcVersion = "20w51a"
|
2020-11-25 14:34:48 -05:00
|
|
|
static def yarnVersion = "+build.1"
|
2020-10-27 14:18:09 -04:00
|
|
|
static def loaderVersion = "0.10.5+build.213"
|
2019-07-14 12:42:09 -04:00
|
|
|
}
|
|
|
|
|
2020-11-05 13:12:01 -05:00
|
|
|
version = Globals.baseVersion + "+" + (ENV.GITHUB_RUN_NUMBER ? "" : "local-") + getBranch()
|
2020-04-05 10:51:59 -04:00
|
|
|
logger.lifecycle("Building Fabric: " + version)
|
|
|
|
|
2019-07-14 12:42:09 -04:00
|
|
|
import org.apache.commons.codec.digest.DigestUtils
|
2020-11-15 14:06:27 -05:00
|
|
|
import net.fabricmc.loom.task.RunClientTask
|
|
|
|
import net.fabricmc.loom.task.RunServerTask
|
2019-05-11 02:55:17 -04:00
|
|
|
|
|
|
|
def getSubprojectVersion(project, version) {
|
2019-05-13 05:20:47 -04:00
|
|
|
if (grgit == null) {
|
|
|
|
return version + "+nogit"
|
|
|
|
}
|
2020-10-11 16:28:03 -04:00
|
|
|
|
2019-05-11 17:48:33 -04:00
|
|
|
def latestCommits = grgit.log(paths: [project.name], maxCommits: 1)
|
2020-10-11 16:28:03 -04:00
|
|
|
|
2019-05-11 17:48:33 -04:00
|
|
|
if (latestCommits.isEmpty()) {
|
|
|
|
return version + "+uncommited"
|
|
|
|
}
|
2020-10-11 16:28:03 -04:00
|
|
|
|
|
|
|
return version + "+" + latestCommits.get(0).id.substring(0, 8) + DigestUtils.sha256Hex(Globals.mcVersion).substring(0, 2)
|
2019-05-11 02:55:17 -04:00
|
|
|
}
|
2018-11-05 09:54:00 -05:00
|
|
|
|
2020-04-05 10:07:27 -04:00
|
|
|
def getBranch() {
|
2020-11-05 13:12:01 -05:00
|
|
|
def ENV = System.getenv()
|
|
|
|
if (ENV.GITHUB_REF) {
|
|
|
|
def branch = ENV.GITHUB_REF
|
2019-08-27 15:40:07 -04:00
|
|
|
return branch.substring(branch.lastIndexOf("/") + 1)
|
2019-08-27 15:26:27 -04:00
|
|
|
}
|
2020-10-11 16:28:03 -04:00
|
|
|
|
2019-08-27 15:11:55 -04:00
|
|
|
if (grgit == null) {
|
|
|
|
return "unknown"
|
|
|
|
}
|
2020-10-11 16:28:03 -04:00
|
|
|
|
2019-12-27 18:32:40 -05:00
|
|
|
def branch = grgit.branch.current().name
|
|
|
|
return branch.substring(branch.lastIndexOf("/") + 1)
|
2019-08-27 15:11:55 -04:00
|
|
|
}
|
|
|
|
|
2020-11-15 14:15:35 -05:00
|
|
|
def moduleDependencies(project, List<String> depNames) {
|
|
|
|
def deps = depNames.iterator().collect { project.dependencies.project(path: ":$it", configuration: 'dev') }
|
|
|
|
project.dependencies {
|
|
|
|
deps.each {
|
|
|
|
compile it
|
|
|
|
}
|
|
|
|
}
|
|
|
|
project.publishing {
|
|
|
|
publications {
|
|
|
|
mavenJava(MavenPublication) {
|
|
|
|
pom.withXml {
|
|
|
|
def depsNode = asNode().appendNode("dependencies")
|
|
|
|
deps.each {
|
|
|
|
def depNode = depsNode.appendNode("dependency")
|
|
|
|
depNode.appendNode("groupId", it.group)
|
|
|
|
depNode.appendNode("artifactId", it.name)
|
|
|
|
depNode.appendNode("version", it.version)
|
|
|
|
depNode.appendNode("scope", "compile")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
allprojects {
|
2020-10-11 16:28:03 -04:00
|
|
|
apply plugin: "checkstyle"
|
|
|
|
apply plugin: "maven-publish"
|
|
|
|
apply plugin: "fabric-loom"
|
|
|
|
apply plugin: "net.minecrell.licenser"
|
2018-12-14 13:48:37 -05:00
|
|
|
|
2020-11-10 14:58:58 -05:00
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
|
|
def targetVersion = 8
|
|
|
|
if (JavaVersion.current().isJava9Compatible()) {
|
|
|
|
it.options.release = targetVersion
|
|
|
|
} else {
|
|
|
|
sourceCompatibility = JavaVersion.toVersion(targetVersion)
|
|
|
|
targetCompatibility = JavaVersion.toVersion(targetVersion)
|
|
|
|
}
|
|
|
|
}
|
2018-11-05 09:54:00 -05:00
|
|
|
|
2019-04-24 13:15:08 -04:00
|
|
|
group = "net.fabricmc.fabric-api"
|
|
|
|
|
2020-05-03 12:56:50 -04:00
|
|
|
sourceSets {
|
|
|
|
testmod {
|
|
|
|
compileClasspath += main.compileClasspath
|
|
|
|
runtimeClasspath += main.runtimeClasspath
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-15 14:06:27 -05:00
|
|
|
task runTestmodClient(type: RunClientTask) {
|
|
|
|
classpath sourceSets.testmod.runtimeClasspath
|
|
|
|
}
|
|
|
|
|
|
|
|
task runTestmodServer(type: RunServerTask) {
|
|
|
|
classpath sourceSets.testmod.runtimeClasspath
|
|
|
|
}
|
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
dependencies {
|
2019-07-14 12:42:09 -04:00
|
|
|
minecraft "com.mojang:minecraft:$Globals.mcVersion"
|
2019-12-10 02:43:00 -05:00
|
|
|
mappings "net.fabricmc:yarn:${Globals.mcVersion}${Globals.yarnVersion}:v2"
|
2020-10-11 16:28:03 -04:00
|
|
|
modCompile "net.fabricmc:fabric-loader:${Globals.loaderVersion}"
|
2019-04-23 18:46:23 -04:00
|
|
|
}
|
2018-12-09 11:47:35 -05:00
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
configurations {
|
|
|
|
dev
|
|
|
|
}
|
2018-11-05 09:54:00 -05:00
|
|
|
|
2020-09-10 12:36:46 -04:00
|
|
|
loom {
|
|
|
|
shareCaches = true
|
|
|
|
}
|
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
}
|
|
|
|
|
2019-07-24 17:07:45 -04:00
|
|
|
jar {
|
|
|
|
classifier = "dev"
|
|
|
|
}
|
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
afterEvaluate {
|
2019-07-24 17:07:45 -04:00
|
|
|
remapJar {
|
|
|
|
input = file("${project.buildDir}/libs/$archivesBaseName-${version}-dev.jar")
|
|
|
|
archiveName = "${archivesBaseName}-${version}.jar"
|
|
|
|
}
|
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
artifacts {
|
2019-05-10 19:02:20 -04:00
|
|
|
dev file: file("${project.buildDir}/libs/$archivesBaseName-${version}-dev.jar"), type: "jar", builtBy: jar
|
2019-04-23 18:46:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
processResources {
|
|
|
|
inputs.property "version", project.version
|
|
|
|
|
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
|
|
include "fabric.mod.json"
|
|
|
|
expand "version": project.version
|
|
|
|
}
|
|
|
|
|
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
|
|
exclude "fabric.mod.json"
|
|
|
|
}
|
|
|
|
}
|
2019-04-26 14:18:20 -04:00
|
|
|
|
|
|
|
license {
|
2020-10-11 16:28:03 -04:00
|
|
|
header rootProject.file("HEADER")
|
|
|
|
include "**/*.java"
|
2019-04-26 14:18:20 -04:00
|
|
|
}
|
2019-04-23 18:46:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
task sourcesJar(type: Jar, dependsOn: classes) {
|
2020-10-11 16:28:03 -04:00
|
|
|
archiveClassifier = "sources"
|
2019-04-23 18:46:23 -04:00
|
|
|
from sourceSets.main.allSource
|
|
|
|
}
|
2019-10-26 22:39:47 -04:00
|
|
|
|
|
|
|
checkstyle {
|
|
|
|
configFile = rootProject.file("checkstyle.xml")
|
2020-10-11 16:28:03 -04:00
|
|
|
toolVersion = "8.31"
|
2019-10-26 22:39:47 -04:00
|
|
|
}
|
2019-06-27 12:22:48 -04:00
|
|
|
}
|
2019-10-26 22:39:47 -04:00
|
|
|
|
|
|
|
javadoc {
|
2020-04-05 10:07:27 -04:00
|
|
|
options {
|
|
|
|
source = "8"
|
2020-10-11 16:28:03 -04:00
|
|
|
encoding = "UTF-8"
|
|
|
|
charSet = "UTF-8"
|
2020-04-05 10:07:27 -04:00
|
|
|
memberLevel = JavadocMemberLevel.PACKAGE
|
|
|
|
links(
|
2020-10-11 16:28:03 -04:00
|
|
|
"https://guava.dev/releases/21.0/api/docs/",
|
|
|
|
"https://asm.ow2.io/javadoc/",
|
|
|
|
"https://docs.oracle.com/javase/8/docs/api/",
|
|
|
|
"http://jenkins.liteloader.com/job/Mixin/javadoc/",
|
|
|
|
"https://logging.apache.org/log4j/2.x/log4j-api/apidocs/"
|
2020-04-05 10:07:27 -04:00
|
|
|
// Need to add minecraft jd publication etc once there is one available
|
|
|
|
)
|
|
|
|
// Disable the crazy super-strict doclint tool in Java 8
|
2020-10-11 16:28:03 -04:00
|
|
|
addStringOption("Xdoclint:none", "-quiet")
|
2020-04-05 10:07:27 -04:00
|
|
|
}
|
2020-10-11 16:28:03 -04:00
|
|
|
|
2020-04-05 10:07:27 -04:00
|
|
|
allprojects.each {
|
|
|
|
source(it.sourceSets.main.allJava.srcDirs)
|
|
|
|
}
|
2020-10-11 16:28:03 -04:00
|
|
|
|
2019-06-27 12:22:48 -04:00
|
|
|
classpath = sourceSets.main.compileClasspath
|
2020-04-05 10:07:27 -04:00
|
|
|
include("**/api/**")
|
2020-02-10 12:05:41 -05:00
|
|
|
failOnError false
|
2018-12-22 10:21:31 -05:00
|
|
|
}
|
|
|
|
|
2020-02-10 12:05:41 -05:00
|
|
|
task javadocJar(type: Jar) {
|
2020-04-05 10:07:27 -04:00
|
|
|
dependsOn javadoc
|
|
|
|
from javadoc.destinationDir
|
2020-02-10 12:05:41 -05:00
|
|
|
//Set as `fatjavadoc` to prevent an ide form trying to use this javadoc, over using the modules javadoc
|
2020-10-11 16:28:03 -04:00
|
|
|
archiveClassifier = "fatjavadoc"
|
2020-02-10 12:05:41 -05:00
|
|
|
}
|
2020-10-11 16:28:03 -04:00
|
|
|
|
2020-02-10 12:05:41 -05:00
|
|
|
build.dependsOn javadocJar
|
|
|
|
|
2020-11-15 14:06:27 -05:00
|
|
|
// Runs a dedicated headless server with all test mods that closes once complete.
|
|
|
|
task runAutoTestServer(type: RunServerTask) {
|
|
|
|
project.subprojects {
|
|
|
|
classpath it.sourceSets.testmod.runtimeClasspath
|
|
|
|
}
|
|
|
|
jvmArgs "-Dfabric.autoTest"
|
|
|
|
args "--nogui"
|
|
|
|
}
|
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
subprojects {
|
2020-05-03 12:56:50 -04:00
|
|
|
dependencies {
|
|
|
|
testmodCompile sourceSets.main.output
|
|
|
|
}
|
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
task remapMavenJar(type: Copy, dependsOn: remapJar) {
|
|
|
|
afterEvaluate {
|
|
|
|
from("${project.buildDir}/libs/$archivesBaseName-${version}.jar")
|
|
|
|
into("${project.buildDir}/libs/")
|
|
|
|
rename { String fn -> "$archivesBaseName-${version}-maven.jar" }
|
|
|
|
}
|
|
|
|
}
|
2019-04-23 19:14:43 -04:00
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
mavenJava(MavenPublication) {
|
2020-04-05 10:51:59 -04:00
|
|
|
afterEvaluate {
|
|
|
|
artifact(file("${project.buildDir}/libs/$archivesBaseName-${version}-maven.jar")) {
|
|
|
|
builtBy remapMavenJar
|
|
|
|
}
|
2020-10-11 16:28:03 -04:00
|
|
|
|
2020-04-05 10:51:59 -04:00
|
|
|
artifact(sourcesJar) {
|
|
|
|
builtBy remapSourcesJar
|
|
|
|
}
|
2019-04-23 19:14:43 -04:00
|
|
|
}
|
|
|
|
}
|
2019-07-24 17:07:45 -04:00
|
|
|
}
|
2019-04-23 19:14:43 -04:00
|
|
|
|
2020-04-05 10:07:27 -04:00
|
|
|
setupRepositories(repositories)
|
2019-04-23 19:14:43 -04:00
|
|
|
}
|
|
|
|
|
2019-06-27 12:22:48 -04:00
|
|
|
javadoc.enabled = false
|
2019-04-23 18:46:23 -04:00
|
|
|
}
|
2019-04-03 15:34:09 -04:00
|
|
|
|
2019-05-10 19:02:20 -04:00
|
|
|
task remapMavenJar(type: net.fabricmc.loom.task.RemapJarTask, dependsOn: jar) {
|
2019-04-23 18:46:23 -04:00
|
|
|
afterEvaluate {
|
2019-05-10 19:02:20 -04:00
|
|
|
input = file("${project.buildDir}/libs/${archivesBaseName}-${version}-dev.jar")
|
2019-07-24 17:07:45 -04:00
|
|
|
archiveName = "${archivesBaseName}-${version}-maven.jar"
|
2019-05-10 19:02:20 -04:00
|
|
|
addNestedDependencies = false
|
2019-04-03 15:34:09 -04:00
|
|
|
}
|
2019-04-23 18:46:23 -04:00
|
|
|
}
|
2019-04-03 15:34:09 -04:00
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
mavenJava(MavenPublication) {
|
2019-04-23 19:14:43 -04:00
|
|
|
artifact(file("${project.buildDir}/libs/$archivesBaseName-${version}-maven.jar")) {
|
|
|
|
builtBy remapMavenJar
|
|
|
|
}
|
2020-10-11 16:28:03 -04:00
|
|
|
|
2019-04-23 19:14:43 -04:00
|
|
|
artifact(sourcesJar) {
|
|
|
|
builtBy remapSourcesJar
|
|
|
|
}
|
2020-10-11 16:28:03 -04:00
|
|
|
|
2020-04-05 10:07:27 -04:00
|
|
|
artifact javadocJar
|
2020-10-11 16:28:03 -04:00
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
pom.withXml {
|
|
|
|
def depsNode = asNode().appendNode("dependencies")
|
|
|
|
subprojects.each {
|
|
|
|
def depNode = depsNode.appendNode("dependency")
|
|
|
|
depNode.appendNode("groupId", it.group)
|
|
|
|
depNode.appendNode("artifactId", it.name)
|
2019-05-17 10:20:37 -04:00
|
|
|
depNode.appendNode("version", it.version)
|
2019-04-23 18:46:23 -04:00
|
|
|
depNode.appendNode("scope", "compile")
|
|
|
|
}
|
|
|
|
}
|
2019-11-28 03:03:04 -05:00
|
|
|
}
|
2019-04-03 15:34:09 -04:00
|
|
|
}
|
2019-04-23 19:14:43 -04:00
|
|
|
|
2020-04-05 10:07:27 -04:00
|
|
|
setupRepositories(repositories)
|
|
|
|
}
|
|
|
|
|
|
|
|
void setupRepositories(RepositoryHandler repositories) {
|
|
|
|
//repositories.mavenLocal() // uncomment for testing
|
2020-11-05 13:12:01 -05:00
|
|
|
def ENV = System.getenv()
|
|
|
|
if (ENV.MAVEN_URL) {
|
2020-04-05 10:07:27 -04:00
|
|
|
repositories.maven {
|
2020-11-05 13:12:01 -05:00
|
|
|
url ENV.MAVEN_URL
|
2020-04-05 10:07:27 -04:00
|
|
|
credentials {
|
2020-11-05 13:12:01 -05:00
|
|
|
username ENV.MAVEN_USERNAME
|
|
|
|
password ENV.MAVEN_PASSWORD
|
2019-04-23 19:14:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-03 15:34:09 -04:00
|
|
|
}
|
|
|
|
|
2019-04-26 14:18:20 -04:00
|
|
|
task licenseFormatAll
|
|
|
|
subprojects { p -> licenseFormatAll.dependsOn("${p.path}:licenseFormat") }
|
2019-05-11 17:48:33 -04:00
|
|
|
subprojects.each { remapJar.dependsOn("${it.path}:remapJar") }
|
2019-04-26 14:18:20 -04:00
|
|
|
|
2020-05-03 12:56:50 -04:00
|
|
|
sourceSets {
|
|
|
|
testmod
|
|
|
|
}
|
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
dependencies {
|
|
|
|
afterEvaluate {
|
|
|
|
subprojects.each {
|
|
|
|
compile project(path: ":${it.name}", configuration: "dev")
|
|
|
|
include project("${it.name}:")
|
2020-05-03 12:56:50 -04:00
|
|
|
|
|
|
|
testmodCompile project("${it.name}:").sourceSets.testmod.output
|
2019-04-23 18:46:23 -04:00
|
|
|
}
|
|
|
|
}
|
2018-11-05 09:54:00 -05:00
|
|
|
}
|
|
|
|
|
2019-05-11 18:00:57 -04:00
|
|
|
curseforge {
|
2020-11-05 13:12:01 -05:00
|
|
|
if (ENV.CURSEFORGE_API_KEY) {
|
|
|
|
apiKey = ENV.CURSEFORGE_API_KEY
|
2019-05-11 18:00:57 -04:00
|
|
|
}
|
2020-10-11 16:28:03 -04:00
|
|
|
|
2019-05-11 18:00:57 -04:00
|
|
|
project {
|
2020-10-11 16:28:03 -04:00
|
|
|
id = "306612"
|
|
|
|
changelog = "A changelog can be found at https://github.com/FabricMC/fabric/commits"
|
2020-11-04 19:20:47 -05:00
|
|
|
releaseType = "beta"
|
2020-11-25 14:34:48 -05:00
|
|
|
addGameVersion "1.17"
|
2020-10-11 16:28:03 -04:00
|
|
|
addGameVersion "Fabric"
|
|
|
|
|
2019-05-11 18:00:57 -04:00
|
|
|
mainArtifact(file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar")) {
|
2020-11-05 13:42:17 -05:00
|
|
|
displayName = "[$Globals.mcVersion] Fabric API $Globals.baseVersion"
|
2019-05-11 18:00:57 -04:00
|
|
|
}
|
2020-10-11 16:28:03 -04:00
|
|
|
|
2019-05-11 18:00:57 -04:00
|
|
|
afterEvaluate {
|
|
|
|
uploadTask.dependsOn("remapJar")
|
|
|
|
}
|
|
|
|
}
|
2020-10-11 16:28:03 -04:00
|
|
|
|
2020-04-05 10:07:27 -04:00
|
|
|
options {
|
2019-05-11 18:00:57 -04:00
|
|
|
forgeGradleIntegration = false
|
|
|
|
}
|
|
|
|
}
|
2018-12-14 13:48:37 -05:00
|
|
|
|
2020-07-01 13:58:47 -04:00
|
|
|
import org.kohsuke.github.GHReleaseBuilder
|
|
|
|
import org.kohsuke.github.GitHub
|
|
|
|
|
|
|
|
task github(dependsOn: remapMavenJar) {
|
|
|
|
onlyIf {
|
2020-11-05 13:12:01 -05:00
|
|
|
ENV.GITHUB_TOKEN
|
2020-07-01 13:58:47 -04:00
|
|
|
}
|
2020-10-11 16:28:03 -04:00
|
|
|
|
2020-07-01 13:58:47 -04:00
|
|
|
doLast {
|
2020-11-05 13:12:01 -05:00
|
|
|
def github = GitHub.connectUsingOAuth(ENV.GITHUB_TOKEN as String)
|
|
|
|
def repository = github.getRepository(ENV.GITHUB_REPOSITORY)
|
2020-07-01 13:58:47 -04:00
|
|
|
|
|
|
|
def releaseBuilder = new GHReleaseBuilder(repository, version as String)
|
2020-11-05 13:53:10 -05:00
|
|
|
releaseBuilder.name("[$Globals.mcVersion] Fabric API $Globals.baseVersion")
|
2020-10-11 16:28:03 -04:00
|
|
|
releaseBuilder.body("A changelog can be found at https://github.com/FabricMC/fabric/commits")
|
2020-07-01 13:58:47 -04:00
|
|
|
releaseBuilder.commitish(getBranch())
|
|
|
|
|
|
|
|
def ghRelease = releaseBuilder.create()
|
|
|
|
ghRelease.uploadAsset(file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar"), "application/java-archive");
|
|
|
|
}
|
|
|
|
}
|
2020-11-05 13:12:01 -05:00
|
|
|
|
|
|
|
// A task to ensure that the version being released has not already been released.
|
|
|
|
task checkVersion {
|
|
|
|
doFirst {
|
|
|
|
def xml = new URL("https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api/maven-metadata.xml").text
|
|
|
|
def metadata = new XmlSlurper().parseText(xml)
|
|
|
|
def versions = metadata.versioning.versions.version*.text();
|
|
|
|
if (versions.contains(version)) {
|
|
|
|
throw new RuntimeException("${version} has already been released!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
github.mustRunAfter checkVersion
|
|
|
|
publish.mustRunAfter checkVersion
|
|
|
|
project.tasks.curseforge.mustRunAfter checkVersion
|