Skip to content

Commit 1f3cb07

Browse files
committed
Change Maven Group ID to dev.corgitaco
1 parent 52b2323 commit 1f3cb07

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# 6.0.0.2
22
- Move Night Config Shutdown to Fabric Server Lifecycle Event
33
- Fix Commands Not being Registered on NeoForge
4+
- Change Maven Group ID to `dev.corgitaco`
45

56
# 6.0.0.1
67
* Fix concurrency issues with random scheduled ticks.

Fabric/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ tasks {
5757
exclude("architectury.common.json")
5858
configurations = listOf(project.configurations.getByName("shadowBundle"))
5959
archiveClassifier.set("dev-shadow")
60-
relocate("blue.endless.jankson", "${project.group}.shadow.blue.endless.jankson")
60+
relocate("blue.endless.jankson", "corgitaco.corgilib.shadow.blue.endless.jankson")
6161
}
6262

6363
remapJar {

Fabric/src/main/java/corgitaco/corgilib/fabric/CorgiLibFabric.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public void onInitialize() {
2222
public static void initializeCorgiLib(String initializedFrom) {
2323
Objects.requireNonNull(initializedFrom, "BYG must be told where it was initialized from.");
2424
if (firstInitialized != null) {
25-
CorgiLib.LOGGER.debug(String.format("Attempted to Initialize Oh The Biomes You'll Go (BYG) from \"%s\" but BYG already was initialized from \"%s\", this should not be a problem.", initializedFrom, firstInitialized));
25+
CorgiLib.LOGGER.debug(String.format("Attempted to Initialize Oh The Biomes We've Gone (BWG) from \"%s\" but BWG already was initialized from \"%s\", this should not be a problem.", initializedFrom, firstInitialized));
2626
return;
2727
}
2828
firstInitialized = initializedFrom;

Forge/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ tasks {
6666
exclude("architectury.common.json")
6767
configurations = listOf(project.configurations.getByName("shadowBundle"))
6868
archiveClassifier.set("dev-shadow")
69-
relocate("blue.endless.jankson", "${project.group}.shadow.blue.endless.jankson")
69+
relocate("blue.endless.jankson", "corgitaco.corgilib.shadow.blue.endless.jankson")
7070
}
7171

7272
remapJar {

NeoForge/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ tasks {
6363
exclude("architectury.common.json", "dev/corgi/corgilib/neoforge/datagen/**")
6464
configurations = listOf(project.configurations.getByName("shadowBundle"))
6565
archiveClassifier.set("dev-shadow")
66-
relocate("blue.endless.jankson", "${project.group}.shadow.blue.endless.jankson")
66+
relocate("blue.endless.jankson", "corgitaco.corgilib.shadow.blue.endless.jankson")
6767
}
6868

6969
remapJar {

NeoForge/src/main/java/dev/corgitaco/corgilib/neoforge/datagen/NeoForgeDatagen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import net.neoforged.fml.common.EventBusSubscriber;
66
import net.neoforged.neoforge.data.event.GatherDataEvent;
77

8-
@EventBusSubscriber(bus = EventBusSubscriber.Bus.MOD, modid = CorgiLib.MOD_ID)
8+
@EventBusSubscriber(modid = CorgiLib.MOD_ID)
99
class NeoForgeDatagen {
1010

1111
@SubscribeEvent

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Project
2-
version=6.0.0.1
3-
group=corgitaco.corgilib
2+
version=6.0.0.2-SNAPSHOT
3+
group=dev.corgitaco
44
archives_base_name=Corgilib
55

66
# Upload IDs

0 commit comments

Comments
 (0)