123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- plugins {
- id "com.github.johnrengelman.shadow" version "5.0.0"
- id "com.matthewprenger.cursegradle"
- }
- loom {
- accessWidener = file("src/main/resources/architectury.accessWidener")
- }
- configurations {
- common
- shadowCommon // Don't use shadow from the shadow plugin because we don't want IDEA to index this.
- compileClasspath.extendsFrom common
- runtimeClasspath.extendsFrom common
- developmentFabric.extendsFrom common
- }
- architectury {
- platformSetupLoomIde()
- fabric()
- }
- repositories {
- maven { url "https://maven.terraformersmc.com/releases/" }
- }
- dependencies {
- minecraft "com.mojang:minecraft:${rootProject.architectury.minecraft}"
- mappings minecraft.officialMojangMappings()
- modImplementation "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}"
- modImplementation "net.fabricmc.fabric-api:fabric-api:${rootProject.fabric_api_version}"
- modCompileOnly "com.terraformersmc:modmenu:${rootProject.mod_menu_version}"
- implementation "net.jodah:typetools:0.6.2"
- shadowCommon "net.jodah:typetools:0.6.2"
- common(project(path: ":common", configuration: "namedElements")) { transitive false }
- shadowCommon(project(path: ":common", configuration: "transformProductionFabric")) { transitive false }
- }
- processResources {
- filesMatching("fabric.mod.json") {
- expand "version": project.version
- }
- inputs.property "version", project.version
- }
- shadowJar {
- exclude "architectury-common.accessWidener"
- exclude "architectury.common.json"
- relocate "net.jodah.typetools", "me.shedaniel.architectury.shadowed.impl.net.jodah.typetools"
- configurations = [project.configurations.shadowCommon]
- classifier "shadow"
- }
- remapJar {
- dependsOn(shadowJar)
- input.set(shadowJar.archiveFile)
- archiveClassifier = "fabric"
- }
- publishing {
- publications {
- mavenFabric(MavenPublication) {
- artifactId = rootProject.archivesBaseName + "-fabric"
- artifact(remapJar.archivePath) {
- builtBy build
- classifier null
- }
- }
- }
- repositories {
- if (System.getenv("MAVEN_PASS") != null) {
- maven {
- url = "https://deploy.shedaniel.me/"
- credentials {
- username = "shedaniel"
- password = System.getenv("MAVEN_PASS")
- }
- }
- }
- }
- }
- curseforge {
- if (project.hasProperty("CURSE_API_KEY") || System.getenv("CURSE_API_KEY") != null) {
- apiKey = project.hasProperty("CURSE_API_KEY") ? project.property("CURSE_API_KEY") : System.getenv("CURSE_API_KEY")
- project {
- id = "419697"
- releaseType = "release"
- changelogType = "html"
- changelog = releaseChangelog()
- addGameVersion "1.16-Snapshot"
- addGameVersion "1.16.4"
- addGameVersion "1.16.5"
- addGameVersion "Java 8"
- addGameVersion "Fabric"
- relations {
- requiredDependency "fabric-api"
- }
- mainArtifact(remapJar.archivePath) {
- displayName = "[Fabric $rootProject.supported_version] v$project.version"
- }
- afterEvaluate {
- uploadTask.dependsOn("build")
- }
- }
- }
- options {
- forgeGradleIntegration = false
- javaVersionAutoDetect = false
- }
- }
- rootProject.tasks.getByName("curseforgePublish").dependsOn tasks.getByName("curseforge")
|