Skip to content
This repository was archived by the owner on Jan 18, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ whitelist.json
*.iml
*.ipr
*.iws
src/main/resources/mixins.*([!.]).json
*.bat
*.DS_Store
!gradlew.bat
Expand Down
10 changes: 5 additions & 5 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
* For more details, see https://docs.gradle.org/8.0.1/userguide/java_library_plugin.html#sec:java_library_configurations_graph
*/
dependencies {
api("com.github.GTNewHorizons:Postea:1.1.1:dev")
api("com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-639-GTNH:dev")
api("com.github.GTNewHorizons:AE2FluidCraft-Rework:1.4.89-gtnh:dev")
api("com.github.GTNewHorizons:Postea:1.1.3:dev")
api("com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-673-GTNH:dev")
api("com.github.GTNewHorizons:AE2FluidCraft-Rework:1.4.108-gtnh:dev")

runtimeOnlyNonPublishable("com.github.GTNewHorizons:NotEnoughItems:2.7.57-GTNH:dev")
runtimeOnlyNonPublishable("com.github.GTNewHorizons:waila:1.8.8:dev")
runtimeOnlyNonPublishable("com.github.GTNewHorizons:NotEnoughItems:2.7.72-GTNH:dev")
runtimeOnlyNonPublishable("com.github.GTNewHorizons:waila:1.8.12:dev")
}
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ modId = ae2noultimatepatterns

# Root package of the mod, used to find various classes in other properties,
# mcmod.info substitution, enabling assertions in run tasks, etc.
modGroup =
modGroup = ae2noultimatepatterns

# Whether to use modGroup as the maven publishing group.
# When false, com.github.GTNewHorizons is used.
Expand Down Expand Up @@ -50,7 +50,7 @@ enableGenericInjection = true
# Generate a class with a String field for the mod version named as defined below.
# If generateGradleTokenClass is empty or not missing, no such class will be generated.
# If gradleTokenVersion is empty or missing, the field will not be present in the class.
generateGradleTokenClass = Tags
generateGradleTokenClass = ae2noultimatepatterns.Tags

# Name of the token containing the project's current version to generate/replace.
gradleTokenVersion = VERSION
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
package ae2noultimatepatterns;

import net.minecraft.item.Item;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
package ae2noultimatepatterns;

import net.minecraft.item.Item;

public class DummyItem extends Item {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
package ae2noultimatepatterns;

import net.minecraft.item.Item;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagInt;
Expand All @@ -10,7 +12,7 @@

public class PosteaTransformers implements Runnable {

final byte FLUID_BYTE = 2;
private static final byte FLUID_BYTE = 2;

@Override
public void run() {
Expand Down