2020-07-01 13:58:47 -04:00
|
|
|
buildscript {
|
|
|
|
dependencies {
|
2021-11-12 07:48:58 -05:00
|
|
|
classpath 'org.kohsuke:github-api:1.135'
|
2020-07-01 13:58:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-05 09:54:00 -05:00
|
|
|
plugins {
|
2021-05-12 15:23:04 -04:00
|
|
|
id "java-library"
|
2020-10-11 16:28:03 -04:00
|
|
|
id "eclipse"
|
|
|
|
id "idea"
|
|
|
|
id "maven-publish"
|
2022-05-18 14:16:52 -04:00
|
|
|
id "fabric-loom" version "0.12.27" apply false
|
2022-05-01 10:44:16 -04:00
|
|
|
id "com.diffplug.spotless" version "6.5.1"
|
2021-05-12 15:23:04 -04:00
|
|
|
id "org.ajoberstar.grgit" version "3.1.0"
|
2020-10-11 16:28:03 -04:00
|
|
|
id "com.matthewprenger.cursegradle" version "1.4.0"
|
2021-01-25 13:19:18 -05:00
|
|
|
id "com.modrinth.minotaur" version "1.1.0"
|
2022-03-13 09:52:58 -04:00
|
|
|
id "me.modmuss50.remotesign" version "0.2.4" apply false
|
2018-11-05 09:54:00 -05:00
|
|
|
}
|
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
def ENV = System.getenv()
|
2022-03-13 09:52:58 -04:00
|
|
|
def signingEnabled = ENV.SIGNING_SERVER
|
2018-11-05 09:54:00 -05:00
|
|
|
|
2021-11-12 07:48:58 -05:00
|
|
|
version = project.version + "+" + (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
|
2019-05-11 02:55:17 -04:00
|
|
|
|
2021-11-12 07:48:58 -05:00
|
|
|
def getSubprojectVersion(project) {
|
|
|
|
// Get the version from the gradle.properties file
|
|
|
|
def version = project.properties["${project.name}-version"]
|
|
|
|
|
|
|
|
if (!version) {
|
|
|
|
throw new NullPointerException("Could not find version for " + project.name)
|
|
|
|
}
|
|
|
|
|
2019-05-13 05:20:47 -04:00
|
|
|
if (grgit == null) {
|
|
|
|
return version + "+nogit"
|
|
|
|
}
|
2021-04-14 13:35:48 -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
|
|
|
|
2021-11-12 07:48:58 -05:00
|
|
|
return version + "+" + latestCommits.get(0).id.substring(0, 8) + DigestUtils.sha256Hex(project.rootProject.minecraft_version).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) {
|
2021-11-12 07:48:58 -05:00
|
|
|
def deps = depNames.iterator().collect { project.dependencies.project(path: ":$it", configuration: 'namedElements') }
|
2020-11-15 14:15:35 -05:00
|
|
|
project.dependencies {
|
|
|
|
deps.each {
|
2021-05-12 15:23:04 -04:00
|
|
|
api it
|
2020-11-15 14:15:35 -05:00
|
|
|
}
|
|
|
|
}
|
2022-03-13 09:52:58 -04:00
|
|
|
|
|
|
|
// As we manually handle the maven artifacts, we need to also manually specify the deps.
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-15 14:15:35 -05:00
|
|
|
}
|
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
allprojects {
|
2022-05-01 10:44:16 -04:00
|
|
|
group = "net.fabricmc.fabric-api"
|
|
|
|
|
2022-05-01 11:16:30 -04:00
|
|
|
apply plugin: "maven-publish"
|
|
|
|
apply plugin: "me.modmuss50.remotesign"
|
|
|
|
|
2022-05-01 10:44:16 -04:00
|
|
|
tasks.withType(GenerateModuleMetadata) {
|
|
|
|
enabled = false
|
|
|
|
}
|
|
|
|
|
|
|
|
if (signingEnabled) {
|
|
|
|
remoteSign {
|
|
|
|
requestUrl = ENV.SIGNING_SERVER
|
|
|
|
pgpAuthKey = ENV.SIGNING_PGP_KEY
|
|
|
|
jarAuthKey = ENV.SIGNING_JAR_KEY
|
|
|
|
|
|
|
|
afterEvaluate {
|
|
|
|
// PGP sign all maven publications.
|
|
|
|
sign publishing.publications.mavenJava
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
setupRepositories(repositories)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (it.name == "deprecated") return
|
|
|
|
|
2021-05-12 15:23:04 -04:00
|
|
|
apply plugin: "java-library"
|
2020-10-11 16:28:03 -04:00
|
|
|
apply plugin: "checkstyle"
|
|
|
|
apply plugin: "fabric-loom"
|
2022-05-01 10:44:16 -04:00
|
|
|
apply plugin: "com.diffplug.spotless"
|
2018-12-14 13:48:37 -05:00
|
|
|
|
2020-11-10 14:58:58 -05:00
|
|
|
tasks.withType(JavaCompile).configureEach {
|
2021-11-16 13:41:10 -05:00
|
|
|
it.options.release = 17
|
2020-11-10 14:58:58 -05:00
|
|
|
}
|
2018-11-05 09:54:00 -05:00
|
|
|
|
2020-05-03 12:56:50 -04:00
|
|
|
sourceSets {
|
|
|
|
testmod {
|
|
|
|
compileClasspath += main.compileClasspath
|
|
|
|
runtimeClasspath += main.runtimeClasspath
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-12 15:23:04 -04:00
|
|
|
loom {
|
2022-01-30 16:37:23 -05:00
|
|
|
runtimeOnlyLog4j = true
|
|
|
|
|
2021-05-12 15:23:04 -04:00
|
|
|
runs {
|
|
|
|
testmodClient {
|
|
|
|
client()
|
|
|
|
ideConfigGenerated project.rootProject == project
|
|
|
|
name = "Testmod Client"
|
|
|
|
source sourceSets.testmod
|
|
|
|
}
|
|
|
|
testmodServer {
|
|
|
|
server()
|
|
|
|
ideConfigGenerated project.rootProject == project
|
|
|
|
name = "Testmod Server"
|
|
|
|
source sourceSets.testmod
|
|
|
|
}
|
|
|
|
}
|
2020-11-15 14:06:27 -05:00
|
|
|
}
|
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
dependencies {
|
2021-11-12 07:48:58 -05:00
|
|
|
minecraft "com.mojang:minecraft:$rootProject.minecraft_version"
|
|
|
|
mappings "net.fabricmc:yarn:${rootProject.minecraft_version}${project.yarn_version}:v2"
|
|
|
|
modApi "net.fabricmc:fabric-loader:${project.loader_version}"
|
2019-04-23 18:46:23 -04:00
|
|
|
}
|
2018-11-05 09:54:00 -05:00
|
|
|
|
2020-09-10 12:36:46 -04:00
|
|
|
loom {
|
2021-08-31 09:00:20 -04:00
|
|
|
shareRemapCaches = true
|
2020-09-10 12:36:46 -04:00
|
|
|
}
|
|
|
|
|
2021-11-12 07:48:58 -05:00
|
|
|
processResources {
|
|
|
|
inputs.property "version", project.version
|
2019-04-23 18:46:23 -04:00
|
|
|
|
2021-11-12 07:48:58 -05:00
|
|
|
filesMatching("fabric.mod.json") {
|
|
|
|
expand "version": project.version
|
2019-04-23 18:46:23 -04:00
|
|
|
}
|
2021-11-12 07:48:58 -05:00
|
|
|
}
|
2019-04-26 14:18:20 -04:00
|
|
|
|
2022-05-01 10:44:16 -04:00
|
|
|
spotless {
|
|
|
|
java {
|
|
|
|
licenseHeaderFile(rootProject.file("HEADER"))
|
|
|
|
}
|
2019-04-23 18:46:23 -04:00
|
|
|
}
|
|
|
|
|
2021-11-25 10:06:25 -05:00
|
|
|
java {
|
|
|
|
withSourcesJar()
|
2019-04-23 18:46:23 -04:00
|
|
|
}
|
2019-10-26 22:39:47 -04:00
|
|
|
|
|
|
|
checkstyle {
|
|
|
|
configFile = rootProject.file("checkstyle.xml")
|
2021-11-12 07:48:58 -05:00
|
|
|
toolVersion = "9.1"
|
2019-10-26 22:39:47 -04:00
|
|
|
}
|
2021-05-12 15:23:04 -04:00
|
|
|
|
|
|
|
tasks.withType(AbstractArchiveTask) {
|
|
|
|
preserveFileTimestamps = false
|
|
|
|
reproducibleFileOrder = true
|
|
|
|
}
|
2021-11-12 07:48:58 -05:00
|
|
|
|
2022-03-13 09:52:58 -04:00
|
|
|
if (signingEnabled) {
|
|
|
|
remoteSign {
|
|
|
|
sign remapJar
|
|
|
|
}
|
|
|
|
}
|
2022-04-17 14:23:48 -04:00
|
|
|
|
|
|
|
// Run this task after updating minecraft to regenerate any required resources
|
|
|
|
task generateResources {
|
|
|
|
group = "fabric"
|
|
|
|
}
|
2019-06-27 12:22:48 -04:00
|
|
|
}
|
2019-10-26 22:39:47 -04:00
|
|
|
|
2021-01-19 13:48:09 -05:00
|
|
|
// Apply auxiliary buildscripts to submodules
|
|
|
|
// This must be done after all plugins are applied to subprojects
|
|
|
|
apply from: "gradle/module-validation.gradle"
|
2021-11-12 07:48:58 -05:00
|
|
|
apply from: "gradle/module-versioning.gradle"
|
2021-01-19 13:48:09 -05:00
|
|
|
|
2019-10-26 22:39:47 -04:00
|
|
|
javadoc {
|
2020-04-05 10:07:27 -04:00
|
|
|
options {
|
2021-11-16 13:41:10 -05:00
|
|
|
source = "17"
|
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
|
|
|
|
|
2021-05-12 15:23:04 -04:00
|
|
|
loom {
|
|
|
|
runs {
|
2021-11-12 07:48:58 -05:00
|
|
|
gametest {
|
|
|
|
inherit testmodServer
|
|
|
|
|
|
|
|
name "Game Test"
|
|
|
|
|
|
|
|
// Enable the gametest runner
|
|
|
|
vmArg "-Dfabric-api.gametest"
|
|
|
|
vmArg "-Dfabric-api.gametest.report-file=${project.buildDir}/junit.xml"
|
|
|
|
runDir "build/gametest"
|
|
|
|
}
|
2021-05-12 15:23:04 -04:00
|
|
|
autoTestServer {
|
|
|
|
inherit testmodServer
|
2021-11-12 07:48:58 -05:00
|
|
|
|
|
|
|
name "Auto Test Server"
|
|
|
|
|
2021-05-12 15:23:04 -04:00
|
|
|
vmArg "-Dfabric.autoTest"
|
|
|
|
}
|
2020-11-15 14:06:27 -05:00
|
|
|
}
|
|
|
|
}
|
2021-11-12 07:48:58 -05:00
|
|
|
test.dependsOn runGametest
|
2020-11-15 14:06:27 -05:00
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
subprojects {
|
2022-05-01 10:44:16 -04:00
|
|
|
if (it.name == "deprecated") return
|
|
|
|
|
2020-05-03 12:56:50 -04:00
|
|
|
dependencies {
|
2021-05-12 15:23:04 -04:00
|
|
|
testmodImplementation sourceSets.main.output
|
2021-11-12 07:48:58 -05:00
|
|
|
|
2021-12-03 08:35:29 -05:00
|
|
|
// Make all modules depend on the gametest api (and thus res loader) to try and promote its usage.
|
|
|
|
if (project.name != "fabric-gametest-api-v1") {
|
2021-11-12 07:48:58 -05:00
|
|
|
testmodImplementation project(path: ':fabric-gametest-api-v1', configuration: 'namedElements')
|
2021-12-03 08:35:29 -05:00
|
|
|
testmodImplementation project(path: ':fabric-resource-loader-v0', configuration: 'namedElements')
|
|
|
|
}
|
2022-03-13 09:52:18 -04:00
|
|
|
|
|
|
|
// Make all testmods run with registry-sync-v0 as it is required to register new objects.
|
|
|
|
if (project.name != "fabric-registry-sync-v0") {
|
|
|
|
testmodRuntimeOnly project(path: ':fabric-registry-sync-v0', configuration: 'namedElements')
|
|
|
|
}
|
2020-05-03 12:56:50 -04:00
|
|
|
}
|
|
|
|
|
2019-04-23 19:14:43 -04:00
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
mavenJava(MavenPublication) {
|
2022-03-13 09:52:58 -04:00
|
|
|
artifact(signingEnabled ? signRemapJar.output : remapJar) {
|
|
|
|
builtBy(signingEnabled ? signRemapJar : remapJar)
|
|
|
|
}
|
|
|
|
|
|
|
|
artifact(remapSourcesJar) {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-03-13 09:52:58 -04:00
|
|
|
// We manually handle the pom generation
|
|
|
|
loom.disableDeprecatedPomGeneration(publishing.publications.mavenJava)
|
|
|
|
|
2019-06-27 12:22:48 -04:00
|
|
|
javadoc.enabled = false
|
2021-09-20 08:50:25 -04:00
|
|
|
|
|
|
|
afterEvaluate {
|
2021-11-12 07:48:58 -05:00
|
|
|
// Disable the gen sources task on sub projects
|
2021-11-03 14:57:29 -04:00
|
|
|
genSourcesWithFernFlower.enabled = false
|
2021-10-13 13:55:15 -04:00
|
|
|
genSourcesWithCfr.enabled = false
|
2021-09-20 08:50:25 -04:00
|
|
|
unpickJar.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) {
|
2021-08-31 09:00:20 -04:00
|
|
|
input = jar.archiveFile
|
|
|
|
archiveFileName = "${archivesBaseName}-${project.version}-maven.jar"
|
|
|
|
addNestedDependencies = false
|
2019-04-23 18:46:23 -04:00
|
|
|
}
|
2021-08-31 09:00:20 -04:00
|
|
|
build.dependsOn remapMavenJar
|
2019-04-03 15:34:09 -04:00
|
|
|
|
2022-03-13 09:52:58 -04:00
|
|
|
if (signingEnabled) {
|
|
|
|
remoteSign {
|
|
|
|
sign remapMavenJar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
mavenJava(MavenPublication) {
|
2022-03-13 09:52:58 -04:00
|
|
|
artifact(signingEnabled ? signRemapMavenJar.output : remapMavenJar) {
|
|
|
|
builtBy(signingEnabled ? signRemapMavenJar : remapMavenJar)
|
2019-04-23 19:14:43 -04:00
|
|
|
}
|
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 {
|
2022-05-01 10:44:16 -04:00
|
|
|
// Dont depend on the deprecated modules in the main artifact.
|
|
|
|
if (it.path.startsWith(":deprecated")) return
|
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
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
|
|
|
}
|
2020-04-05 10:07:27 -04:00
|
|
|
}
|
|
|
|
|
2021-11-12 07:48:58 -05:00
|
|
|
// Required until the deprecation is removed. Fabric API's main jar that is published to maven does not contain sub modules.
|
2021-09-17 13:42:42 -04:00
|
|
|
loom.disableDeprecatedPomGeneration(publishing.publications.mavenJava)
|
|
|
|
|
2020-04-05 10:07:27 -04:00
|
|
|
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
|
Fabric Transfer API: item transfer and fluid-containing items. (#1553)
* Add item and "fluid item" APIs
* Rework ContainerItemContext javadoc
* Rework the Inventory wrapper API
* Cleanup inventory wrapper implementation, add < 64 max stack count test, separate tests better
* Fix Inventory wrapper not limiting the stack count correctly (thanks @lilybeevee!)
* Rewrite inventory wrapper, add SingleStackStorage base implementation
* Composters
* SingleStackStorage adjustements
* Bump version
* Move icon to correct location. Closes #1565
* Bump version
* Remove composter implementation (it's broken), slight renames
* Fix SidedInventory extract
* Bump version
* Don't use MAVEN_USERNAME if it's not specified
* Add comparator output, add missing markDirty calls, fix tests
* Bump version
* Add SingleVariantStorage, deprecate SingleFluidStorage, definalize a few things, make sure markDirty() is only called once per successful outer transaction in inventory wrappers
* Add composter support
* Move EmptyFluidView to BlankVariantView, update README and package-info
* Bump version
* Key -> variant
* Add Transaction#openNested(@Nullable TransactionContext)
* Add SingleSlotContainerItemContext
* Bump prerelease version
* Remove useless comment
* Remove ContainerItemContext#getWorld
* Bump prerelease version
* Add StorageUtil#findExtractableContent and ContainerItemContext#withInitial
* Bump prerelease version
2021-08-17 14:08:09 -04:00
|
|
|
if (ENV.MAVEN_USERNAME) {
|
|
|
|
credentials {
|
|
|
|
username ENV.MAVEN_USERNAME
|
|
|
|
password ENV.MAVEN_PASSWORD
|
|
|
|
}
|
2019-04-23 19:14:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-03 15:34:09 -04:00
|
|
|
}
|
|
|
|
|
2022-05-01 10:44:16 -04:00
|
|
|
subprojects.each {
|
|
|
|
if (it.name == "deprecated") return
|
|
|
|
|
|
|
|
remapJar.dependsOn("${it.path}:remapJar")
|
|
|
|
}
|
2019-04-26 14:18:20 -04:00
|
|
|
|
2020-05-03 12:56:50 -04:00
|
|
|
sourceSets {
|
|
|
|
testmod
|
|
|
|
}
|
|
|
|
|
2021-08-31 08:59:35 -04:00
|
|
|
// These modules are not included in the fat jar, maven will resolve them via the pom.
|
|
|
|
def devOnlyModules = [
|
2021-12-03 08:35:29 -05:00
|
|
|
"fabric-gametest-api-v1",
|
|
|
|
"fabric-data-generation-api-v1"
|
2021-08-31 08:59:35 -04:00
|
|
|
]
|
|
|
|
|
2019-04-23 18:46:23 -04:00
|
|
|
dependencies {
|
|
|
|
afterEvaluate {
|
|
|
|
subprojects.each {
|
2022-05-01 10:44:16 -04:00
|
|
|
if (it.name == "deprecated") return
|
|
|
|
|
|
|
|
api project(path: "${it.path}", configuration: "namedElements")
|
2021-08-31 08:59:35 -04:00
|
|
|
|
2022-05-01 10:44:16 -04:00
|
|
|
testmodImplementation project("${it.path}:").sourceSets.testmod.output
|
2019-04-23 18:46:23 -04:00
|
|
|
}
|
|
|
|
}
|
2018-11-05 09:54:00 -05:00
|
|
|
}
|
|
|
|
|
2022-03-13 09:52:58 -04:00
|
|
|
remapJar {
|
|
|
|
afterEvaluate {
|
|
|
|
subprojects.each {
|
2022-05-01 10:44:16 -04:00
|
|
|
if (it.name in devOnlyModules || it.name == "deprecated") return
|
2022-03-13 09:52:58 -04:00
|
|
|
|
|
|
|
// Include the signed or none signed jar from the sub project.
|
2022-05-01 10:44:16 -04:00
|
|
|
nestedJars.from project("${it.path}").tasks.getByName(signingEnabled ? "signRemapJar" : "remapJar")
|
2022-03-13 09:52:58 -04: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"
|
2021-07-23 12:05:52 -04:00
|
|
|
changelog = ENV.CHANGELOG ?: "No changelog provided"
|
2021-12-03 09:51:34 -05:00
|
|
|
releaseType = project.prerelease == "true" ? "beta" : "release"
|
2022-03-17 19:46:36 -04:00
|
|
|
addGameVersion "1.19-Snapshot"
|
2020-10-11 16:28:03 -04:00
|
|
|
addGameVersion "Fabric"
|
|
|
|
|
2022-03-13 09:52:58 -04:00
|
|
|
mainArtifact(signingEnabled ? signRemapJar.output : remapJar) {
|
2021-11-12 07:48:58 -05:00
|
|
|
displayName = "[$project.minecraft_version] Fabric API $project.version"
|
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
|
|
|
|
2022-03-13 09:52:58 -04:00
|
|
|
if (signingEnabled) {
|
|
|
|
project.tasks.curseforge.dependsOn signRemapJar
|
|
|
|
build.dependsOn signRemapJar
|
|
|
|
}
|
|
|
|
|
2020-07-01 13:58:47 -04:00
|
|
|
import org.kohsuke.github.GHReleaseBuilder
|
|
|
|
import org.kohsuke.github.GitHub
|
|
|
|
|
2022-03-13 09:52:58 -04:00
|
|
|
task github(dependsOn: (signingEnabled ? signRemapJar : remapJar)) {
|
2020-07-01 13:58:47 -04:00
|
|
|
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)
|
2021-11-12 07:48:58 -05:00
|
|
|
releaseBuilder.name("[$project.minecraft_version] Fabric API $project.version")
|
2021-07-23 12:05:52 -04:00
|
|
|
releaseBuilder.body(ENV.CHANGELOG ?: "No changelog provided")
|
2020-07-01 13:58:47 -04:00
|
|
|
releaseBuilder.commitish(getBranch())
|
2021-12-03 09:51:34 -05:00
|
|
|
releaseBuilder.prerelease(project.prerelease == "true")
|
2020-07-01 13:58:47 -04:00
|
|
|
|
|
|
|
def ghRelease = releaseBuilder.create()
|
2022-03-13 09:52:58 -04:00
|
|
|
ghRelease.uploadAsset(signingEnabled ? signRemapJar.output.get().getAsFile() : remapJar.archiveFile.get().getAsFile(), "application/java-archive");
|
2020-07-01 13:58:47 -04:00
|
|
|
}
|
|
|
|
}
|
2020-11-05 13:12:01 -05:00
|
|
|
|
2022-03-13 09:52:58 -04:00
|
|
|
task modrinth(type: com.modrinth.minotaur.TaskModrinthUpload, dependsOn: (signingEnabled ? signRemapJar : remapJar)) {
|
2021-01-25 13:19:18 -05:00
|
|
|
onlyIf {
|
|
|
|
ENV.MODRINTH_TOKEN
|
|
|
|
}
|
|
|
|
|
|
|
|
token = ENV.MODRINTH_TOKEN
|
|
|
|
projectId = "P7dR8mSH"
|
|
|
|
versionNumber = version
|
2021-11-12 07:48:58 -05:00
|
|
|
versionName = "[$project.minecraft_version] Fabric API $project.version"
|
2021-12-03 09:51:34 -05:00
|
|
|
releaseType = project.prerelease == "true" ? "beta" : "release"
|
2021-07-23 12:05:52 -04:00
|
|
|
changelog = ENV.CHANGELOG ?: "No changelog provided"
|
2021-01-25 13:19:18 -05:00
|
|
|
|
2022-03-13 09:52:58 -04:00
|
|
|
uploadFile = signingEnabled ? signRemapJar.output : remapJar
|
2021-01-25 13:19:18 -05:00
|
|
|
|
2021-11-12 07:48:58 -05:00
|
|
|
addGameVersion(project.minecraft_version)
|
2021-01-25 13:19:18 -05:00
|
|
|
addLoader('fabric')
|
|
|
|
}
|
|
|
|
|
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
|
2021-01-25 13:19:18 -05:00
|
|
|
modrinth.mustRunAfter checkVersion
|
2020-11-05 13:12:01 -05:00
|
|
|
publish.mustRunAfter checkVersion
|
|
|
|
project.tasks.curseforge.mustRunAfter checkVersion
|