2024-10-22 20:13:32 +02:00
|
|
|
--- a/Forge/build.gradle
|
|
|
|
+++ /dev/null
|
2025-02-01 15:30:30 +02:00
|
|
|
@@ -1,128 +1,0 @@
|
2024-10-22 20:13:32 +02:00
|
|
|
-// Adjust the output jar name here
|
|
|
|
-archivesBaseName = "${mod_name.replace(" ", "")}-Forge-${minecraft_version}"
|
|
|
|
-
|
|
|
|
-dependencies {
|
|
|
|
- // Compat
|
|
|
|
- // NOT AVAILABLE ON FORGE modImplementation("maven.modrinth:vanishmod:${vanishmod}")
|
|
|
|
-
|
2025-01-14 17:14:57 +02:00
|
|
|
- modImplementation("me.shedaniel.cloth:cloth-config-forge:${cloth_config}")
|
2025-02-01 15:30:30 +02:00
|
|
|
- modImplementation("unimaven.curseforge:playerrevive-266890:${player_revive}")
|
|
|
|
- modImplementation("unimaven.curseforge:creativecore-257814:${creative_core}")
|
2025-01-14 17:14:57 +02:00
|
|
|
-
|
2024-10-22 20:13:32 +02:00
|
|
|
- // 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 {
|
|
|
|
- minecraftForge {
|
|
|
|
- loader forge_version
|
|
|
|
- mixinConfig("${mod_id}.mixins.json", "${mod_id}.forge.mixins.json")
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-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("META-INF/mods.toml") {
|
|
|
|
- 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("[Forge 1.20.6] CraterLib - ${project.version}")
|
|
|
|
- setGameVersions("1.20.6")
|
|
|
|
- setLoaders("forge")
|
|
|
|
- setArtifact(remapJar)
|
|
|
|
- setCurseEnvironment("both")
|
|
|
|
- setIsManualRelease(true)
|
2025-01-14 17:14:57 +02:00
|
|
|
-
|
|
|
|
- curseDepends {
|
|
|
|
- optional("cloth-config")
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- modrinthDepends {
|
|
|
|
- optional("cloth-config")
|
|
|
|
- }
|
2024-10-22 20:13:32 +02:00
|
|
|
-}
|