From de2881ef84d321be09233919573ff0d4cb2115bd Mon Sep 17 00:00:00 2001 From: Calclavia Date: Thu, 1 Aug 2013 20:20:14 -0400 Subject: [PATCH] Added build script --- build.properties | 7 ++ build.xml | 90 ++++++++++++++++++++ src/resonantinduction/ResonantInduction.java | 7 ++ 3 files changed, 104 insertions(+) create mode 100644 build.properties create mode 100644 build.xml diff --git a/build.properties b/build.properties new file mode 100644 index 000000000..51e863cf7 --- /dev/null +++ b/build.properties @@ -0,0 +1,7 @@ +dir.development=./ +dir.mcp=${dir.development}forge/mcp +version.minecraft=1.6.2 +version.mod.major=0 +version.mod.minor=0 +version.mod.revis=1 +version.universalelectricity=2.0.0 \ No newline at end of file diff --git a/build.xml b/build.xml new file mode 100644 index 000000000..778215006 --- /dev/null +++ b/build.xml @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/resonantinduction/ResonantInduction.java b/src/resonantinduction/ResonantInduction.java index 2f281a100..01c924005 100644 --- a/src/resonantinduction/ResonantInduction.java +++ b/src/resonantinduction/ResonantInduction.java @@ -1,6 +1,8 @@ package resonantinduction; import cpw.mods.fml.common.Mod; +import cpw.mods.fml.common.Mod.Instance; +import cpw.mods.fml.common.ModMetadata; /** * @author Calclavia @@ -18,4 +20,9 @@ public class ResonantInduction public static final String BUILD_VERSION = "@BUILD@"; public static final String VERSION = MAJOR_VERSION + "." + MINOR_VERSION + "." + REVISION_VERSION; + @Instance(ID) + public static ResonantInduction INSTNACE; + + @Mod.Metadata(ID) + public static ModMetadata metadata; }