diff --git a/CHANGELOG.md b/CHANGELOG.md index cd228bb..731b92d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Changed + +- Removed Fabric, Forge and common version catalogs. + ## [0.12.1] - 2024-05-25 ### Fixed diff --git a/helper.gradle b/helper.gradle index 88cee8f..60f883f 100644 --- a/helper.gradle +++ b/helper.gradle @@ -87,13 +87,6 @@ allprojects { forgeVersion = "20.4.234" fabricLoaderVersion = "0.15.11" fabricApiVersion = "0.97.0+1.20.4" - // https://www.curseforge.com/minecraft/mc-mods/jei/files - jeiVersion = "17.3.0.52" - // https://www.curseforge.com/minecraft/mc-mods/roughly-enough-items/files - reiVersion = "14.1.727" - architecturyVersion = "11.0.9" // dependency of rei - clothMathVersion = "0.6.1" // dependency of rei - clothConfigVersion = "13.0.121" // dependency of rei } ext.enableMutationTesting = { diff --git a/refinedarchitect-catalog-platform-common/build.gradle b/refinedarchitect-catalog-platform-common/build.gradle deleted file mode 100644 index ff3c538..0000000 --- a/refinedarchitect-catalog-platform-common/build.gradle +++ /dev/null @@ -1,19 +0,0 @@ -plugins { - id 'version-catalog' -} - -catalog { - versionCatalog { - version("minecraft", minecraftVersion) - library("jei-api", "mezz.jei", "jei-${minecraftVersion}-common-api").version(jeiVersion) - library("rei-api", "me.shedaniel", "RoughlyEnoughItems-api").version(reiVersion) - } -} - -publishing { - publications { - create("maven", MavenPublication) { - from(components.versionCatalog) - } - } -} \ No newline at end of file diff --git a/refinedarchitect-catalog-platform-fabric/build.gradle b/refinedarchitect-catalog-platform-fabric/build.gradle deleted file mode 100644 index e4fa010..0000000 --- a/refinedarchitect-catalog-platform-fabric/build.gradle +++ /dev/null @@ -1,41 +0,0 @@ -plugins { - id 'version-catalog' -} - -catalog { - versionCatalog { - // https://www.curseforge.com/minecraft/mc-mods/cloth-config/files - library("cloth-config", "me.shedaniel.cloth", "cloth-config-fabric").version(clothConfigVersion) - - // https://github.com/TechReborn/Energy (https://maven.fabricmc.net/teamreborn/energy/) - def energy = version("teamreborn-energy", "3.0.0") - library("teamreborn-energy", "teamreborn", "energy").versionRef(energy) - - library("rei-impl", "me.shedaniel", "RoughlyEnoughItems-fabric").version(reiVersion) - library("rei-architectury", "dev.architectury", "architectury-fabric").version(architecturyVersion) - library("rei-plugin", "me.shedaniel", "RoughlyEnoughItems-default-plugin").version(reiVersion) - - library("jei-api", "mezz.jei", "jei-${minecraftVersion}-fabric-api").version(jeiVersion) - library("jei-impl", "mezz.jei", "jei-${minecraftVersion}-fabric").version(jeiVersion) - - // https://modrinth.com/mod/modmenu - def modmenu = version("modmenu", "9.0.0") - library("modmenu", "com.terraformersmc", "modmenu").versionRef(modmenu) - - // https://www.curseforge.com/minecraft/mc-mods/wthit/files - def wthit = version("wthit", "fabric-10.0.1") - library("wthit", "mcp.mobius.waila", "wthit").versionRef(wthit) - - // https://www.curseforge.com/minecraft/mc-mods/no-indium/files - def noIndium = version("noIndium", "1.1.0+1.20.4") - library("noIndium", "me.luligabi", "NoIndium").versionRef(noIndium) - } -} - -publishing { - publications { - create("maven", MavenPublication) { - from(components.versionCatalog) - } - } -} \ No newline at end of file diff --git a/refinedarchitect-catalog-platform-forge/build.gradle b/refinedarchitect-catalog-platform-forge/build.gradle deleted file mode 100644 index 2a2bc73..0000000 --- a/refinedarchitect-catalog-platform-forge/build.gradle +++ /dev/null @@ -1,22 +0,0 @@ -plugins { - id 'version-catalog' -} - -catalog { - versionCatalog { - library("jei-api", "mezz.jei", "jei-${minecraftVersion}-neoforge-api").version(jeiVersion) - library("jei-impl", "mezz.jei", "jei-${minecraftVersion}-neoforge").version(jeiVersion) - - library("rei-impl", "me.shedaniel", "RoughlyEnoughItems-forge").version(reiVersion) - library("rei-architectury", "dev.architectury", "architectury-forge").version(architecturyVersion) - library("rei-cloth-math", "me.shedaniel.cloth", "basic-math").version(clothMathVersion) - } -} - -publishing { - publications { - create("maven", MavenPublication) { - from(components.versionCatalog) - } - } -} diff --git a/refinedarchitect-catalog/build.gradle b/refinedarchitect-catalog/build.gradle index 79c1bfa..4f9f893 100644 --- a/refinedarchitect-catalog/build.gradle +++ b/refinedarchitect-catalog/build.gradle @@ -26,6 +26,18 @@ catalog { def equalsVerifier = version("equalsverifier", "3.15.5") library("equalsverifier", "nl.jqno.equalsverifier", "equalsverifier").versionRef(equalsVerifier) + + // https://www.curseforge.com/minecraft/mc-mods/cloth-config/files + def clothConfig = version("clothconfig", "13.0.121") + library("cloth-config", "me.shedaniel.cloth", "cloth-config").version(clothConfig) + + // https://github.com/TechReborn/Energy (https://maven.fabricmc.net/teamreborn/energy/) + def energy = version("teamreborn-energy", "3.0.0") + library("teamreborn-energy", "teamreborn", "energy").versionRef(energy) + + // https://modrinth.com/mod/modmenu + def modmenu = version("modmenu", "9.0.0") + library("modmenu", "com.terraformersmc", "modmenu").versionRef(modmenu) } } diff --git a/settings.gradle b/settings.gradle index 3615994..70c3df6 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,6 +1,2 @@ rootProject.name = 'refinedarchitect' - include 'refinedarchitect-catalog' -include 'refinedarchitect-catalog-platform-common' -include 'refinedarchitect-catalog-platform-fabric' -include 'refinedarchitect-catalog-platform-forge'