From 7143228ace2eafdea1fe2cf8719c01c363395d2d Mon Sep 17 00:00:00 2001 From: Su5eD Date: Thu, 2 May 2024 21:29:18 +0200 Subject: [PATCH] Move namespace to org.sinytra --- .github/workflows/publish-prs.yml | 2 +- README.md | 2 +- build.gradle.kts | 6 +++--- gradle.properties | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish-prs.yml b/.github/workflows/publish-prs.yml index 7ea5f9f..9a52b5b 100644 --- a/.github/workflows/publish-prs.yml +++ b/.github/workflows/publish-prs.yml @@ -23,7 +23,7 @@ jobs: if: false # Option not enabled when the workflows were generated uses: neoforged/actions/.github/workflows/publish-prs.yml@main with: - artifact_base_path: dev/su5ed/sinytra/fabric-loader/ + artifact_base_path: org/sinytra/fabric-loader/ secrets: PR_PUBLISHING_GH_APP_ID: ${{ secrets.PR_PUBLISHING_GH_APP_ID }} PR_PUBLISHING_GH_APP_KEY: ${{ secrets.PR_PUBLISHING_GH_APP_KEY }} diff --git a/README.md b/README.md index bb881fd..fefbea8 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ This is going to be the case for most developers. See the [Forgified Fabric API](https://github.com/Sinytra/ForgifiedFabricAPI) repository for installation instructions. If you wish to depend on the Forgified Fabric Loader alone, it is published at `https://maven.su5ed.dev/releases` -under the `dev.su5ed.sinytra:fabric-loader` identifier. The versioning scheme follows +under the `org.sinytra:fabric-loader` identifier. The versioning scheme follows a `{impl_version}+{upstream_version}+{mc_version}` pattern. #### NESTED JARS NOTE diff --git a/build.gradle.kts b/build.gradle.kts index 2c8d886..d57236e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -29,13 +29,13 @@ val versionForge: String by rootProject val versionLoaderUpstream: String by rootProject val versionYarn: String by project -group = "dev.su5ed.sinytra" +group = "org.sinytra" version = "0.0.0-SNAPSHOT" gradleutils.version { branches { suffixBranch() - suffixExemptedBranch("1.20.1") + suffixExemptedBranch(versionMc) } } version = "${gradleutils.version}+$versionLoaderUpstream+$versionMc" @@ -159,7 +159,7 @@ tasks { provider.configure { from(createMappings.flatMap { it.outputFile }) { rename { "mappings.tsrg" } } manifest.attributes( - "FMLModType" to "LANGPROVIDER", + "FMLModType" to "LIBRARY", "Automatic-Module-Name" to "net.fabricmc.loader", "Implementation-Version" to archiveVersion.get() ) diff --git a/gradle.properties b/gradle.properties index e871b62..37cedce 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,6 +3,6 @@ org.gradle.jvmargs=-Xmx3G versionMc=1.20.6 -versionForge=20.6.13-beta +versionForge=20.6.18-beta versionLoaderUpstream=0.15.10 -versionYarn=1.20.6-rc1+build.4 \ No newline at end of file +versionYarn=1.20.6+build.1 \ No newline at end of file