diff --git a/Essentials/build.xml b/Essentials/build.xml index b14c52e4c..abd4ebe55 100644 --- a/Essentials/build.xml +++ b/Essentials/build.xml @@ -72,7 +72,7 @@ nbproject/build-impl.xml file. --> - + diff --git a/Essentials/nbproject/build-impl.xml b/Essentials/nbproject/build-impl.xml index abe3504c1..6aa5e7272 100644 --- a/Essentials/nbproject/build-impl.xml +++ b/Essentials/nbproject/build-impl.xml @@ -601,13 +601,6 @@ is divided into following sections: - - - - - - - @@ -1044,13 +1037,6 @@ is divided into following sections: - - - - - - - diff --git a/Essentials/nbproject/genfiles.properties b/Essentials/nbproject/genfiles.properties index 6854e9131..bd84a7be1 100644 --- a/Essentials/nbproject/genfiles.properties +++ b/Essentials/nbproject/genfiles.properties @@ -3,8 +3,8 @@ build.xml.script.CRC32=3233ee78 build.xml.stylesheet.CRC32=28e38971@1.38.2.45 # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=5b04d165 -nbproject/build-impl.xml.script.CRC32=685f55e4 +nbproject/build-impl.xml.data.CRC32=4b596d89 +nbproject/build-impl.xml.script.CRC32=4926001b nbproject/build-impl.xml.stylesheet.CRC32=0c01fd8e@1.43.1.45 nbproject/profiler-build-impl.xml.data.CRC32=ab78ce15 nbproject/profiler-build-impl.xml.script.CRC32=abda56ed diff --git a/Essentials/nbproject/project.properties b/Essentials/nbproject/project.properties index 47a285424..0f92879ab 100644 --- a/Essentials/nbproject/project.properties +++ b/Essentials/nbproject/project.properties @@ -22,11 +22,14 @@ debug.test.classpath=\ ${run.test.classpath} # This directory is removed when the project is cleaned: dist.dir=dist -dist.jar=${dist.dir}/original-Essentials.jar +dist.jar=${dist.dir}/Essentials.jar dist.javadoc.dir=${dist.dir}/javadoc endorsed.classpath= excludes= +file.reference.BOSEconomy.jar=../lib/BOSEconomy.jar file.reference.craftbukkit-0.0.1-SNAPSHOT.jar=..\\lib\\craftbukkit-0.0.1-SNAPSHOT.jar +file.reference.iCo4.jar=../lib/iCo4.jar +file.reference.iCo5.jar=../lib/iCo5.jar file.reference.junit-4.5.jar=..\\lib\\junit_4\\junit-4.5.jar file.reference.Permissions.jar=..\\lib\\Permissions.jar includes=** @@ -34,7 +37,9 @@ jar.compress=false javac.classpath=\ ${file.reference.Permissions.jar}:\ ${file.reference.craftbukkit-0.0.1-SNAPSHOT.jar}:\ - ${reference.Register.jar} + ${file.reference.BOSEconomy.jar}:\ + ${file.reference.iCo4.jar}:\ + ${file.reference.iCo5.jar} # Space-separated list of extra javac options javac.compilerargs= javac.deprecation=false @@ -62,8 +67,6 @@ javadoc.windowtitle= meta.inf.dir=${src.dir}/META-INF mkdist.disabled=false platform.active=default_platform -project.Register=../Register -reference.Register.jar=${project.Register}/dist/Register.jar run.classpath=\ ${javac.classpath}:\ ${build.classes.dir} diff --git a/Essentials/nbproject/project.xml b/Essentials/nbproject/project.xml index b49d94afe..354722f09 100644 --- a/Essentials/nbproject/project.xml +++ b/Essentials/nbproject/project.xml @@ -14,15 +14,6 @@ ../lib/nblibraries.properties - - - Register - jar - - jar - clean - jar - - + diff --git a/Essentials/src/com/earth2me/essentials/Essentials.java b/Essentials/src/com/earth2me/essentials/Essentials.java index e9f0871ab..053b1ab41 100644 --- a/Essentials/src/com/earth2me/essentials/Essentials.java +++ b/Essentials/src/com/earth2me/essentials/Essentials.java @@ -26,7 +26,7 @@ import org.bukkit.command.Command; import org.bukkit.command.CommandSender; import com.earth2me.essentials.commands.IEssentialsCommand; import com.earth2me.essentials.commands.NotEnoughArgumentsException; -import com.essentials.register.payment.Methods; +import com.earth2me.essentials.register.payment.Methods; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.bukkit.command.PluginCommand; diff --git a/Essentials/src/com/earth2me/essentials/User.java b/Essentials/src/com/earth2me/essentials/User.java index 5613ffe49..8fe2b0ec5 100644 --- a/Essentials/src/com/earth2me/essentials/User.java +++ b/Essentials/src/com/earth2me/essentials/User.java @@ -1,7 +1,7 @@ package com.earth2me.essentials; import com.earth2me.essentials.commands.IEssentialsCommand; -import com.essentials.register.payment.Method; +import com.earth2me.essentials.register.payment.Method; import java.util.Calendar; import java.util.GregorianCalendar; import java.util.logging.Logger; diff --git a/Register/src/com/essentials/register/payment/Method.java b/Essentials/src/com/earth2me/essentials/register/payment/Method.java similarity index 96% rename from Register/src/com/essentials/register/payment/Method.java rename to Essentials/src/com/earth2me/essentials/register/payment/Method.java index cc0182877..cb2c3eef7 100644 --- a/Register/src/com/essentials/register/payment/Method.java +++ b/Essentials/src/com/earth2me/essentials/register/payment/Method.java @@ -1,4 +1,4 @@ -package com.essentials.register.payment; +package com.earth2me.essentials.register.payment; public interface Method { public Object getPlugin(); diff --git a/Register/src/com/essentials/register/payment/MethodBOSEconomy.java b/Essentials/src/com/earth2me/essentials/register/payment/MethodBOSEconomy.java similarity index 99% rename from Register/src/com/essentials/register/payment/MethodBOSEconomy.java rename to Essentials/src/com/earth2me/essentials/register/payment/MethodBOSEconomy.java index 1e67156e6..c9f40ce0f 100644 --- a/Register/src/com/essentials/register/payment/MethodBOSEconomy.java +++ b/Essentials/src/com/earth2me/essentials/register/payment/MethodBOSEconomy.java @@ -1,4 +1,4 @@ -package com.essentials.register.payment; +package com.earth2me.essentials.register.payment; import cosine.boseconomy.BOSEconomy; diff --git a/Register/src/com/essentials/register/payment/MethodiCo4.java b/Essentials/src/com/earth2me/essentials/register/payment/MethodiCo4.java similarity index 98% rename from Register/src/com/essentials/register/payment/MethodiCo4.java rename to Essentials/src/com/earth2me/essentials/register/payment/MethodiCo4.java index 42c80c3bc..8bb8567d2 100644 --- a/Register/src/com/essentials/register/payment/MethodiCo4.java +++ b/Essentials/src/com/earth2me/essentials/register/payment/MethodiCo4.java @@ -1,4 +1,4 @@ -package com.essentials.register.payment; +package com.earth2me.essentials.register.payment; import com.nijiko.coelho.iConomy.iConomy; import com.nijiko.coelho.iConomy.system.Account; diff --git a/Register/src/com/essentials/register/payment/MethodiCo5.java b/Essentials/src/com/earth2me/essentials/register/payment/MethodiCo5.java similarity index 99% rename from Register/src/com/essentials/register/payment/MethodiCo5.java rename to Essentials/src/com/earth2me/essentials/register/payment/MethodiCo5.java index c1634fcb5..38a32e205 100644 --- a/Register/src/com/essentials/register/payment/MethodiCo5.java +++ b/Essentials/src/com/earth2me/essentials/register/payment/MethodiCo5.java @@ -1,4 +1,4 @@ -package com.essentials.register.payment; +package com.earth2me.essentials.register.payment; import com.iConomy.iConomy; import com.iConomy.system.Account; diff --git a/Register/src/com/essentials/register/payment/Methods.java b/Essentials/src/com/earth2me/essentials/register/payment/Methods.java similarity index 97% rename from Register/src/com/essentials/register/payment/Methods.java rename to Essentials/src/com/earth2me/essentials/register/payment/Methods.java index f47eecb55..36be5bce8 100644 --- a/Register/src/com/essentials/register/payment/Methods.java +++ b/Essentials/src/com/earth2me/essentials/register/payment/Methods.java @@ -1,4 +1,4 @@ -package com.essentials.register.payment; +package com.earth2me.essentials.register.payment; import com.iConomy.iConomy; import cosine.boseconomy.BOSEconomy; diff --git a/EssentialsChat/nbproject/build-impl.xml b/EssentialsChat/nbproject/build-impl.xml index e29ddc780..84fb4835f 100644 --- a/EssentialsChat/nbproject/build-impl.xml +++ b/EssentialsChat/nbproject/build-impl.xml @@ -608,13 +608,6 @@ is divided into following sections: - - - - - - - @@ -1058,13 +1051,6 @@ is divided into following sections: - - - - - - - diff --git a/EssentialsChat/nbproject/genfiles.properties b/EssentialsChat/nbproject/genfiles.properties index 4cd2c5511..49f0e1c6b 100644 --- a/EssentialsChat/nbproject/genfiles.properties +++ b/EssentialsChat/nbproject/genfiles.properties @@ -3,6 +3,6 @@ build.xml.script.CRC32=71afd555 build.xml.stylesheet.CRC32=28e38971@1.38.2.45 # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=3869278d -nbproject/build-impl.xml.script.CRC32=2a1bb0f3 +nbproject/build-impl.xml.data.CRC32=7c7f517b +nbproject/build-impl.xml.script.CRC32=9d5d3374 nbproject/build-impl.xml.stylesheet.CRC32=0c01fd8e@1.43.1.45 diff --git a/EssentialsChat/nbproject/project.properties b/EssentialsChat/nbproject/project.properties index 09ad86fb8..89b368bee 100644 --- a/EssentialsChat/nbproject/project.properties +++ b/EssentialsChat/nbproject/project.properties @@ -33,8 +33,7 @@ jar.compress=false javac.classpath=\ ${file.reference.craftbukkit-0.0.1-SNAPSHOT.jar}:\ ${file.reference.Permissions.jar}:\ - ${reference.Essentials.jar}:\ - ${reference.Register.jar} + ${reference.Essentials.jar} # Space-separated list of extra javac options javac.compilerargs= javac.deprecation=false @@ -64,9 +63,7 @@ meta.inf.dir=${src.dir}/META-INF mkdist.disabled=false platform.active=default_platform project.Essentials=../Essentials -project.Register=../Register reference.Essentials.jar=${project.Essentials}/dist/Essentials.jar -reference.Register.jar=${project.Register}/dist/Register.jar run.classpath=\ ${javac.classpath}:\ ${build.classes.dir} diff --git a/EssentialsChat/nbproject/project.xml b/EssentialsChat/nbproject/project.xml index bd945a361..993881f29 100644 --- a/EssentialsChat/nbproject/project.xml +++ b/EssentialsChat/nbproject/project.xml @@ -23,14 +23,6 @@ clean jar - - Register - jar - - jar - clean - jar - diff --git a/EssentialsGeoIP/nbproject/build-impl.xml b/EssentialsGeoIP/nbproject/build-impl.xml index a381fd143..b32699fc0 100644 --- a/EssentialsGeoIP/nbproject/build-impl.xml +++ b/EssentialsGeoIP/nbproject/build-impl.xml @@ -608,13 +608,6 @@ is divided into following sections: - - - - - - - @@ -1058,13 +1051,6 @@ is divided into following sections: - - - - - - - diff --git a/EssentialsGeoIP/nbproject/genfiles.properties b/EssentialsGeoIP/nbproject/genfiles.properties index eecf3b548..3bb0e69c6 100644 --- a/EssentialsGeoIP/nbproject/genfiles.properties +++ b/EssentialsGeoIP/nbproject/genfiles.properties @@ -1,8 +1,8 @@ -build.xml.data.CRC32=51dc0823 +build.xml.data.CRC32=cbf94f59 build.xml.script.CRC32=c4b1bb0e build.xml.stylesheet.CRC32=28e38971@1.43.1.45 # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=51dc0823 -nbproject/build-impl.xml.script.CRC32=ebe82412 +nbproject/build-impl.xml.data.CRC32=cbf94f59 +nbproject/build-impl.xml.script.CRC32=a87d6c0a nbproject/build-impl.xml.stylesheet.CRC32=0c01fd8e@1.43.1.45 diff --git a/EssentialsGeoIP/nbproject/project.properties b/EssentialsGeoIP/nbproject/project.properties index 5a3bd1294..ed96af206 100644 --- a/EssentialsGeoIP/nbproject/project.properties +++ b/EssentialsGeoIP/nbproject/project.properties @@ -30,8 +30,7 @@ includes=** jar.compress=false javac.classpath=\ ${reference.Essentials.jar}:\ - ${file.reference.craftbukkit-0.0.1-SNAPSHOT.jar}:\ - ${reference.Register.jar} + ${file.reference.craftbukkit-0.0.1-SNAPSHOT.jar} # Space-separated list of extra javac options javac.compilerargs= javac.deprecation=false @@ -63,9 +62,7 @@ meta.inf.dir=${src.dir}/META-INF mkdist.disabled=false platform.active=default_platform project.Essentials=../Essentials -project.Register=../Register reference.Essentials.jar=${project.Essentials}/dist/Essentials.jar -reference.Register.jar=${project.Register}/dist/Register.jar run.classpath=\ ${javac.classpath}:\ ${build.classes.dir} diff --git a/EssentialsGeoIP/nbproject/project.xml b/EssentialsGeoIP/nbproject/project.xml index fd1a5628b..2c6cc9d84 100644 --- a/EssentialsGeoIP/nbproject/project.xml +++ b/EssentialsGeoIP/nbproject/project.xml @@ -23,14 +23,6 @@ clean jar - - Register - jar - - jar - clean - jar - diff --git a/EssentialsProtect/nbproject/build-impl.xml b/EssentialsProtect/nbproject/build-impl.xml index 95424134e..e69131a5a 100644 --- a/EssentialsProtect/nbproject/build-impl.xml +++ b/EssentialsProtect/nbproject/build-impl.xml @@ -608,13 +608,6 @@ is divided into following sections: - - - - - - - @@ -1058,13 +1051,6 @@ is divided into following sections: - - - - - - - diff --git a/EssentialsProtect/nbproject/genfiles.properties b/EssentialsProtect/nbproject/genfiles.properties index 8b5d3b093..663396f31 100644 --- a/EssentialsProtect/nbproject/genfiles.properties +++ b/EssentialsProtect/nbproject/genfiles.properties @@ -3,6 +3,6 @@ build.xml.script.CRC32=1ed11cc3 build.xml.stylesheet.CRC32=28e38971@1.38.3.45 # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=672252fb -nbproject/build-impl.xml.script.CRC32=663029e3 +nbproject/build-impl.xml.data.CRC32=40644caa +nbproject/build-impl.xml.script.CRC32=0a5523ea nbproject/build-impl.xml.stylesheet.CRC32=0c01fd8e@1.43.1.45 diff --git a/EssentialsProtect/nbproject/project.properties b/EssentialsProtect/nbproject/project.properties index f0325deb7..8d0c349b8 100644 --- a/EssentialsProtect/nbproject/project.properties +++ b/EssentialsProtect/nbproject/project.properties @@ -35,8 +35,7 @@ jar.index=${jnlp.enabled} javac.classpath=\ ${reference.Essentials.jar}:\ ${file.reference.craftbukkit-0.0.1-SNAPSHOT.jar}:\ - ${file.reference.c3p0-0.9.1.2.jar}:\ - ${reference.Register.jar} + ${file.reference.c3p0-0.9.1.2.jar} # Space-separated list of extra javac options javac.compilerargs= javac.deprecation=false @@ -72,9 +71,7 @@ manifest.file=manifest.mf meta.inf.dir=${src.dir}/META-INF platform.active=default_platform project.Essentials=../Essentials -project.Register=../Register reference.Essentials.jar=${project.Essentials}/dist/Essentials.jar -reference.Register.jar=${project.Register}/dist/Register.jar run.classpath=\ ${javac.classpath}:\ ${build.classes.dir} diff --git a/EssentialsProtect/nbproject/project.xml b/EssentialsProtect/nbproject/project.xml index 735cb2d60..a3b64021d 100644 --- a/EssentialsProtect/nbproject/project.xml +++ b/EssentialsProtect/nbproject/project.xml @@ -23,14 +23,6 @@ clean jar - - Register - jar - - jar - clean - jar - diff --git a/EssentialsSpawn/nbproject/build-impl.xml b/EssentialsSpawn/nbproject/build-impl.xml index 8fcbe06c2..45fdb295f 100644 --- a/EssentialsSpawn/nbproject/build-impl.xml +++ b/EssentialsSpawn/nbproject/build-impl.xml @@ -608,13 +608,6 @@ is divided into following sections: - - - - - - - @@ -1058,13 +1051,6 @@ is divided into following sections: - - - - - - - diff --git a/EssentialsSpawn/nbproject/genfiles.properties b/EssentialsSpawn/nbproject/genfiles.properties index d03ea7e54..9bef3562d 100644 --- a/EssentialsSpawn/nbproject/genfiles.properties +++ b/EssentialsSpawn/nbproject/genfiles.properties @@ -3,6 +3,6 @@ build.xml.script.CRC32=46e3642f build.xml.stylesheet.CRC32=28e38971@1.38.2.45 # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=0f78c9d4 -nbproject/build-impl.xml.script.CRC32=8deb03d2 +nbproject/build-impl.xml.data.CRC32=e7b96939 +nbproject/build-impl.xml.script.CRC32=f7b05a7b nbproject/build-impl.xml.stylesheet.CRC32=0c01fd8e@1.43.1.45 diff --git a/EssentialsSpawn/nbproject/project.properties b/EssentialsSpawn/nbproject/project.properties index d89976025..3b7354449 100644 --- a/EssentialsSpawn/nbproject/project.properties +++ b/EssentialsSpawn/nbproject/project.properties @@ -31,8 +31,7 @@ includes=** jar.compress=false javac.classpath=\ ${reference.Essentials.jar}:\ - ${file.reference.craftbukkit-0.0.1-SNAPSHOT.jar}:\ - ${reference.Register.jar} + ${file.reference.craftbukkit-0.0.1-SNAPSHOT.jar} # Space-separated list of extra javac options javac.compilerargs= javac.deprecation=false @@ -61,9 +60,7 @@ javadoc.windowtitle= meta.inf.dir=${src.dir}/META-INF platform.active=default_platform project.Essentials=../Essentials -project.Register=../Register reference.Essentials.jar=${project.Essentials}/dist/Essentials.jar -reference.Register.jar=${project.Register}/dist/Register.jar run.classpath=\ ${javac.classpath}:\ ${build.classes.dir} diff --git a/EssentialsSpawn/nbproject/project.xml b/EssentialsSpawn/nbproject/project.xml index 505abb44f..f4e7a570a 100644 --- a/EssentialsSpawn/nbproject/project.xml +++ b/EssentialsSpawn/nbproject/project.xml @@ -23,14 +23,6 @@ clean jar - - Register - jar - - jar - clean - jar - diff --git a/Register/README b/Register/README deleted file mode 100644 index 84f8166d5..000000000 --- a/Register/README +++ /dev/null @@ -1,7 +0,0 @@ -/* - * Register - Bukkit Economy API for all Major Economies - * - * @author: Nijikokun - * @copyright: Copyright (C) 2011 - * @license: GNUv3 Affero License - */ \ No newline at end of file diff --git a/Register/build.xml b/Register/build.xml deleted file mode 100644 index 230fa8618..000000000 --- a/Register/build.xml +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project Register. - - - diff --git a/Register/manifest.mf b/Register/manifest.mf deleted file mode 100644 index 328e8e5bc..000000000 --- a/Register/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/Register/nbproject/build-impl.xml b/Register/nbproject/build-impl.xml deleted file mode 100644 index 3eb58c7c3..000000000 --- a/Register/nbproject/build-impl.xml +++ /dev/null @@ -1,1066 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - - - - - - java -cp "${run.classpath.with.dist.jar}" ${main.class} - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - - - - - - - - Must select one file in the IDE or set profile.class - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Register/nbproject/genfiles.properties b/Register/nbproject/genfiles.properties deleted file mode 100644 index 5c88cb356..000000000 --- a/Register/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=daedca43 -build.xml.script.CRC32=51c04dce -build.xml.stylesheet.CRC32=28e38971@1.43.1.45 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=daedca43 -nbproject/build-impl.xml.script.CRC32=bdb937ac -nbproject/build-impl.xml.stylesheet.CRC32=0c01fd8e@1.43.1.45 diff --git a/Register/nbproject/project.properties b/Register/nbproject/project.properties deleted file mode 100644 index 6e6ae5f2a..000000000 --- a/Register/nbproject/project.properties +++ /dev/null @@ -1,80 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -application.title=Register -application.vendor=schlex -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/Register.jar -dist.javadoc.dir=${dist.dir}/javadoc -endorsed.classpath= -excludes= -file.reference.BOSEconomy.jar=../lib/BOSEconomy.jar -file.reference.bukkit-0.0.1-SNAPSHOT.jar=../lib/bukkit-0.0.1-SNAPSHOT.jar -file.reference.iCo4.jar=../lib/iCo4.jar -file.reference.iCo5.jar=../lib/iCo5.jar -includes=** -jar.compress=false -javac.classpath=\ - ${file.reference.bukkit-0.0.1-SNAPSHOT.jar}:\ - ${file.reference.BOSEconomy.jar}:\ - ${file.reference.iCo4.jar}:\ - ${file.reference.iCo5.jar} -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.6 -javac.target=1.6 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class= -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project -# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value -# or test-sys-prop.name=value to set system properties for unit tests): -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/Register/nbproject/project.xml b/Register/nbproject/project.xml deleted file mode 100644 index 4e27755e8..000000000 --- a/Register/nbproject/project.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - Register - - - - - - - - - ../lib/nblibraries.properties - - -