plugins { id "java" id "idea" id "eclipse" id "java-library" id "maven-publish" id "fabric-loom" version "0.9.50" apply false id "com.matthewprenger.cursegradle" version "1.4.0" id "com.modrinth.minotaur" version "1.1.0" } def ENV = System.getenv() def IsRelease = project.hasProperty('type') && project.getProperty('type').equals("release") version = "$project.mod_version" + (IsRelease ? (ENV.CI_PIPELINE_ID ? "+" + ENV.CI_PIPELINE_ID : "") : "") static Node getOrCreateNode(Node node, String name) { Node dependencies = null for(Node n : node) { if(name == n.name()) { dependencies = n break } } if(dependencies == null) { dependencies = node.appendNode(name) } return dependencies } def moduleDependencies(project, List depNames) { def deps = depNames.iterator().collect { project.dependencies.project(path: ":$it", configuration: 'dev') } project.dependencies { deps.each { api it } } //TODO re-enable to list dependencies for subprojects project.publishing { publications { mavenJava(MavenPublication) { pom.withXml { def depsNode = getOrCreateNode(asNode(), "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") } } } } } } allprojects { apply plugin: "java-library" apply plugin: "maven-publish" apply plugin: "fabric-loom" tasks.withType(JavaCompile).configureEach { it.options.release = 16 } group = "io.gitlab.jfronny.libjf" sourceSets { testmod { compileClasspath += main.compileClasspath runtimeClasspath += main.runtimeClasspath } } loom { 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 } } } dependencies { minecraft "com.mojang:minecraft:${project.minecraft_version}" mappings "net.fabricmc:yarn:${project.minecraft_version}+${project.yarn_mappings}:v2" modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" modImplementation "com.terraformersmc:modmenu:2.0.10" include modImplementation(fabricApi.module("fabric-tag-extensions-v0", "${project.fabric_version}")) include modImplementation(fabricApi.module("fabric-resource-loader-v0", "${project.fabric_version}")) } configurations { dev } loom { shareRemapCaches = true } repositories { maven { name = 'TerraformersMC' url = 'https://maven.terraformersmc.com/' } mavenLocal() } jar { archiveClassifier = "dev" } afterEvaluate { remapJar { input = file("${project.buildDir}/libs/$archivesBaseName-${project.version}-dev.jar") archiveFileName = "${archivesBaseName}-${project.version}.jar" } artifacts { dev file: file("${project.buildDir}/libs/$archivesBaseName-${project.version}-dev.jar"), type: "jar", builtBy: jar } processResources { inputs.property "version", project.version filesMatching("fabric.mod.json") { expand "version": project.version } } } task sourcesJar(type: Jar, dependsOn: classes) { archiveClassifier = "sources" from sourceSets.main.allSource } tasks.withType(AbstractArchiveTask) { preserveFileTimestamps = false reproducibleFileOrder = true } } subprojects { dependencies { testmodImplementation sourceSets.main.output } publishing { publications { mavenJava(MavenPublication) { afterEvaluate { artifact(remapJar) { builtBy remapJar } artifact(sourcesJar) { builtBy remapSourcesJar } } } } /*publications.register(project.name, MavenPublication) { afterEvaluate { System.out.println(project.name) artifact(project.tasks.remapJar) { builtBy project.tasks.remapJar } artifact(sourcesJar) { builtBy project.tasks.remapSourcesJar } } }*/ repositories { maven { url = "https://gitlab.com/api/v4/projects/25805200/packages/maven" name = "gitlab" credentials(HttpHeaderCredentials) { name = "Job-Token" value = ENV.CI_JOB_TOKEN } authentication { header(HttpHeaderAuthentication) } } } } } task remapMavenJar(type: net.fabricmc.loom.task.RemapJarTask, dependsOn: jar) { input = jar.archiveFile archiveFileName = "${archivesBaseName}-${project.version}-maven.jar" addNestedDependencies = false } build.dependsOn remapMavenJar publishing { publications { mavenJava(MavenPublication) { artifact(remapMavenJar) { builtBy remapMavenJar } artifact(sourcesJar) { builtBy remapSourcesJar } pom.withXml { def depsNode = getOrCreateNode(asNode(), "dependencies") subprojects.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") } } } } repositories { maven { url = "https://gitlab.com/api/v4/projects/25805200/packages/maven" name = "gitlab" credentials(HttpHeaderCredentials) { name = "Job-Token" value = ENV.CI_JOB_TOKEN } authentication { header(HttpHeaderAuthentication) } } } } subprojects.each { remapJar.dependsOn("${it.path}:remapJar") } sourceSets { testmod } def devOnlyModules = [ "libjf-devutil-v0" ] dependencies { afterEvaluate { subprojects.each { api project(path: ":${it.name}", configuration: "dev") if (!(it.name in devOnlyModules)) { include project("${it.name}:") } testmodImplementation project("${it.name}:").sourceSets.testmod.output } } } task modrinth(type: com.modrinth.minotaur.TaskModrinthUpload, dependsOn: remapJar) { onlyIf { ENV.MODRINTH_API_TOKEN } token = ENV.MODRINTH_API_TOKEN projectId = "WKwQAwke" versionNumber = version versionName = "[${project.minecraft_version}] ${project.mod_version}" uploadFile = remapJar addGameVersion("${project.minecraft_version}") addLoader('fabric') } curseforge { if (ENV.CURSEFORGE_API_TOKEN) { apiKey = ENV.CURSEFORGE_API_TOKEN } else { println "No CURSEFORGE_API_TOKEN specified" } project { id = "482600" releaseType = 'release' addGameVersion "Fabric" addGameVersion "${project.minecraft_version}" changelog = "" mainArtifact(file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar")) mainArtifact.displayName = "[${project.minecraft_version}] ${project.mod_version}" afterEvaluate { uploadTask.dependsOn(remapJar) } } options { forgeGradleIntegration = false } }