136 lines
3.5 KiB
Groovy
136 lines
3.5 KiB
Groovy
archivesBaseName = "${mod_name.replace(" ", "")}-Fabric-${minecraft_version}"
|
|
|
|
dependencies {
|
|
// Core
|
|
modImplementation "net.fabricmc.fabric-api:fabric-api:${fabric_api}"
|
|
|
|
// Compat
|
|
modImplementation("com.terraformersmc:modmenu:${mod_menu_version}") {
|
|
exclude(group: "net.fabricmc.fabric-api")
|
|
}
|
|
|
|
stupidRemapArch("dev.ftb.mods:ftb-essentials:${ftb_essentials}")
|
|
stupidRemapArch("dev.ftb.mods:ftb-ranks:${ftb_ranks}")
|
|
|
|
modImplementation("me.shedaniel.cloth:cloth-config-fabric:${cloth_config}")
|
|
modImplementation "maven.modrinth:fabrictailor:${fabrictailor}"
|
|
modImplementation "maven.modrinth:vanish:${vanish}"
|
|
|
|
// Do not edit or remove
|
|
implementation project(":Common")
|
|
}
|
|
|
|
shadowJar {
|
|
from sourceSets.main.output
|
|
configurations = [project.configurations.shade]
|
|
|
|
dependencies {
|
|
exclude(dependency('com.google.code.gson:.*'))
|
|
|
|
relocate 'me.hypherionmc.moonconfig', 'shadow.hypherionmc.moonconfig'
|
|
relocate 'me.hypherionmc.mcdiscordformatter', 'shadow.hypherionmc.mcdiscordformatter'
|
|
relocate 'net.kyori', 'shadow.kyori'
|
|
}
|
|
|
|
setArchiveClassifier('dev-shadow')
|
|
mergeServiceFiles()
|
|
}
|
|
|
|
/**
|
|
* ===============================================================================
|
|
* = DO NOT EDIT BELOW THIS LINE UNLESS YOU KNOW WHAT YOU ARE DOING =
|
|
* ===============================================================================
|
|
*/
|
|
|
|
unimined.minecraft {
|
|
fabric {
|
|
loader fabric_loader
|
|
}
|
|
}
|
|
|
|
remapJar {
|
|
inputFile.set shadowJar.archiveFile
|
|
dependsOn shadowJar
|
|
archiveClassifier.set null
|
|
}
|
|
|
|
jar {
|
|
archiveClassifier.set "dev"
|
|
}
|
|
|
|
processResources {
|
|
from project(":Common").sourceSets.main.resources
|
|
def buildProps = project.properties.clone()
|
|
|
|
filesMatching(['fabric.mod.json']) {
|
|
expand buildProps
|
|
}
|
|
}
|
|
|
|
compileTestJava.enabled = false
|
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
source(project(":Common").sourceSets.main.allSource)
|
|
}
|
|
|
|
/**
|
|
* Publishing Config
|
|
*/
|
|
publishing {
|
|
publications {
|
|
mavenJava(MavenPublication) {
|
|
artifactId project.archivesBaseName
|
|
from components.java
|
|
|
|
artifact(remapJar) {
|
|
builtBy remapJar
|
|
}
|
|
|
|
pom.withXml {
|
|
Node pomNode = asNode()
|
|
pomNode.dependencies.'*'.findAll() {
|
|
it.artifactId.text() == 'regutils-joined-fabric' ||
|
|
it.artifactId.text() == 'core' ||
|
|
it.artifactId.text() == 'toml'
|
|
}.each() {
|
|
it.parent().remove(it)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
maven rootProject.orion.getPublishingMaven()
|
|
}
|
|
}
|
|
|
|
publisher {
|
|
apiKeys {
|
|
modrinth(System.getenv("MODRINTH_TOKEN"))
|
|
curseforge(System.getenv("CURSE_TOKEN"))
|
|
nightbloom(System.getenv("PLATFORM_KEY"))
|
|
}
|
|
|
|
setCurseID(curse_id)
|
|
setModrinthID(modrinth_id)
|
|
setNightbloomID("craterlib")
|
|
setVersionType("release")
|
|
setChangelog(rootProject.file("changelog.md"))
|
|
setProjectVersion("${minecraft_version}-${project.version}")
|
|
setDisplayName("[FABRIC/QUILT 1.21.6] CraterLib - ${project.version}")
|
|
setGameVersions("1.21.6")
|
|
setLoaders("fabric", "quilt")
|
|
setArtifact(remapJar)
|
|
setCurseEnvironment("both")
|
|
setIsManualRelease(true)
|
|
|
|
modrinthDepends {
|
|
required("fabric-api")
|
|
optional("cloth-config", "modmenu")
|
|
}
|
|
|
|
curseDepends {
|
|
required("fabric-api")
|
|
optional("cloth-config", "modmenu")
|
|
}
|
|
} |