From 0e13a5ac235dacd0a9cde9be08c7d5faa923af6a Mon Sep 17 00:00:00 2001 From: Alice Gaudon Date: Sat, 15 Feb 2020 10:36:35 +0100 Subject: [PATCH] Complete NerdHubMC -> OnyxStudios rebranding --- README.md | 8 ++++---- foml-mod/build.gradle | 12 ++++++------ foml-test/src/main/resources/fabric.mod.json | 2 +- gradle.properties | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 28819fa..1fcd91d 100644 --- a/README.md +++ b/README.md @@ -6,20 +6,20 @@ ``` repositories { maven { - name = "NerdHubMC" + name = "OnyxStudios" url = "https://maven.abusedmaster.xyz" } } dependencies { - modCompile "com.github.NerdHubMC:FOML:${foml_version}" + modCompile "com.github.OnyxStudios:FOML:${foml_version}" // Includes FOML as a Jar in Jar dependency, Optional - include "com.github.NerdHubMC:FOML:${foml_version}" + include "com.github.OnyxStudios:FOML:${foml_version}" } ``` -You can find current releases over at the [maven](https://maven.abusedmaster.xyz/com/github/NerdHubMC/FOML/) +You can find current releases over at the [maven](https://maven.abusedmaster.xyz/com/github/OnyxStudios/FOML/) # How to use Getting started with FOML is very simple and easy to do. diff --git a/foml-mod/build.gradle b/foml-mod/build.gradle index 5af2bc5..a43712a 100644 --- a/foml-mod/build.gradle +++ b/foml-mod/build.gradle @@ -34,21 +34,21 @@ publishing { artifact sourcesJar pom { name = "FOML" - url = "https://github.com/NerdHubMC/FOML" + url = "https://github.com/OnyxStudios/FOML" licenses { license { name = "MIT License" - url = "https://github.com/NerdHubMC/FOML/blob/master/LICENSE.md" + url = "https://github.com/OnyxStudios/FOML/blob/master/LICENSE.md" } } scm { - url = "https://github.com/NerdHubMC/FOML" - connection = "scm:git:git://github.com/NerdHubMC/FOML.git" - developerConnection = "scm:git:git@github.com:NerdHubMC/FOML.git" + url = "https://github.com/OnyxStudios/FOML" + connection = "scm:git:git://github.com/OnyxStudios/FOML.git" + developerConnection = "scm:git:git@github.com:OnyxStudios/FOML.git" } issueManagement { system = "github" - url = "https://github.com/NerdHubMC/FOML/issues" + url = "https://github.com/OnyxStudios/FOML/issues" } } } diff --git a/foml-test/src/main/resources/fabric.mod.json b/foml-test/src/main/resources/fabric.mod.json index 5693009..56c19ce 100644 --- a/foml-test/src/main/resources/fabric.mod.json +++ b/foml-test/src/main/resources/fabric.mod.json @@ -9,7 +9,7 @@ ], "contact": { "homepage": "https://minecraft.curseforge.com/projects/FOML", - "sources": "https://github.com/NerdHubMC/FOML" + "sources": "https://github.com/OnyxStudios/FOML" }, "license": "MIT", "environment": "*", diff --git a/gradle.properties b/gradle.properties index 4063d82..ba4764c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -7,5 +7,5 @@ fabric_version = 0.4.30+build.291-1.15 javagl_version = 0.3.0 mod_version = 1.2.0 -mod_group = com.github.NerdHubMC +mod_group = com.github.OnyxStudios mod_name = FOML