Skip to content

Commit 9db19b5

Browse files
authored
Update mod group (#311)
1 parent 94ad503 commit 9db19b5

File tree

190 files changed

+704
-704
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

190 files changed

+704
-704
lines changed

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ modName = GTExpertCore
33
# This is a case-sensitive string to identify your mod. Convention is to use lower case.
44
modId = gtexpert
55

6-
modGroup = gtexpert
6+
modGroup = com.github.gtexpert.core
77

88
# Version of your mod.
99
# This field can be left empty if you want your mod's version to be determined by the latest git tag instead.
10-
modVersion = 2.4.1-beta
10+
modVersion = 2.4.1-beta
1111

1212
# Whether to use the old jar naming structure (modid-mcversion-version) instead of the new version (modid-version)
1313
includeMCVersionJar = true
@@ -62,7 +62,7 @@ enableModernJavaSyntax = true
6262
enableJava17RunTasks = false
6363

6464
# Generate a class with String fields for the mod id, name and version named with the fields below
65-
generateGradleTokenClass = gtexpert.Tags
65+
generateGradleTokenClass = com.github.gtexpert.core.Tags
6666
gradleTokenModId = MODID
6767
gradleTokenModName = MODNAME
6868
gradleTokenVersion = VERSION

spotless.importorder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
4=com
77
5=gregtech
88
6=gregicality
9-
7=gtexpert
9+
7=com.github.gtexpert

src/main/java/gtexpert/GTExpertMod.java renamed to src/main/java/com/github/gtexpert/core/GTExpertMod.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package gtexpert;
1+
package com.github.gtexpert.core;
22

33
import java.util.function.Function;
44

@@ -22,13 +22,13 @@
2222
import gregtech.api.GregTechAPI;
2323
import gregtech.api.cover.CoverDefinition;
2424

25-
import gtexpert.api.GTEValues;
26-
import gtexpert.api.util.GTELog;
27-
import gtexpert.api.util.Mods;
28-
import gtexpert.common.GTEConfigHolder;
29-
import gtexpert.common.items.behaviors.GTECoverBehaviors;
30-
import gtexpert.modules.GTEModuleManager;
31-
import gtexpert.modules.GTEModules;
25+
import com.github.gtexpert.core.api.GTEValues;
26+
import com.github.gtexpert.core.api.util.GTELog;
27+
import com.github.gtexpert.core.api.util.Mods;
28+
import com.github.gtexpert.core.common.GTEConfigHolder;
29+
import com.github.gtexpert.core.common.items.behaviors.GTECoverBehaviors;
30+
import com.github.gtexpert.core.modules.GTEModuleManager;
31+
import com.github.gtexpert.core.modules.GTEModules;
3232

3333
@Mod(modid = GTEValues.MODID,
3434
name = GTEValues.MODNAME,

src/main/java/gtexpert/api/GTEValues.java renamed to src/main/java/com/github/gtexpert/core/api/GTEValues.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
package gtexpert.api;
1+
package com.github.gtexpert.core.api;
22

3-
import gtexpert.Tags;
4-
import gtexpert.api.util.GTELog;
5-
import gtexpert.api.util.Mods;
6-
import gtexpert.integration.ae.AEConfigHolder;
7-
import gtexpert.integration.deda.DEDAConfigHolder;
8-
import gtexpert.integration.eio.EnderIOConfigHolder;
9-
import gtexpert.modules.GTEModules;
3+
import com.github.gtexpert.core.Tags;
4+
import com.github.gtexpert.core.api.util.GTELog;
5+
import com.github.gtexpert.core.api.util.Mods;
6+
import com.github.gtexpert.core.integration.ae.AEConfigHolder;
7+
import com.github.gtexpert.core.integration.deda.DEDAConfigHolder;
8+
import com.github.gtexpert.core.integration.eio.EnderIOConfigHolder;
9+
import com.github.gtexpert.core.modules.GTEModules;
1010

1111
public class GTEValues {
1212

src/main/java/gtexpert/api/capability/GTEDataCodes.java renamed to src/main/java/com/github/gtexpert/core/api/capability/GTEDataCodes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package gtexpert.api.capability;
1+
package com.github.gtexpert.core.api.capability;
22

33
public class GTEDataCodes {
44

src/main/java/gtexpert/api/capability/MultiblockRecipeLogicNoCache.java renamed to src/main/java/com/github/gtexpert/core/api/capability/MultiblockRecipeLogicNoCache.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
package gtexpert.api.capability;
1+
package com.github.gtexpert.core.api.capability;
22

33
import gregtech.api.capability.impl.MultiblockRecipeLogic;
44
import gregtech.api.metatileentity.multiblock.RecipeMapMultiblockController;
55

6-
import gtexpert.integration.deda.recipemaps.RecipeMapDraconicFusion;
6+
import com.github.gtexpert.core.integration.deda.recipemaps.RecipeMapDraconicFusion;
77

88
/**
99
* This recipe logic disables cache used for speeding up recipe check.

src/main/java/gtexpert/api/capability/SingleblockRecipeLogicNoCache.java renamed to src/main/java/com/github/gtexpert/core/api/capability/SingleblockRecipeLogicNoCache.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package gtexpert.api.capability;
1+
package com.github.gtexpert.core.api.capability;
22

33
import java.util.function.Supplier;
44

src/main/java/gtexpert/api/gui/GTEGuiTextures.java renamed to src/main/java/com/github/gtexpert/core/api/gui/GTEGuiTextures.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package gtexpert.api.gui;
1+
package com.github.gtexpert.core.api.gui;
22

33
import gregtech.api.gui.resources.SteamTexture;
44
import gregtech.api.gui.resources.TextureArea;

src/main/java/gtexpert/api/modules/GTEModule.java renamed to src/main/java/com/github/gtexpert/core/api/modules/GTEModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package gtexpert.api.modules;
1+
package com.github.gtexpert.core.api.modules;
22

33
import java.lang.annotation.ElementType;
44
import java.lang.annotation.Retention;

src/main/java/gtexpert/api/modules/IGTEModule.java renamed to src/main/java/com/github/gtexpert/core/api/modules/IGTEModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package gtexpert.api.modules;
1+
package com.github.gtexpert.core.api.modules;
22

33
import java.util.Collections;
44
import java.util.List;

0 commit comments

Comments
 (0)