Removed unnecessary files

This commit is contained in:
Garbage Mule
2011-08-21 23:46:34 +02:00
parent a889af53bf
commit 44cb463385
3 changed files with 0 additions and 77 deletions
-19
View File
@@ -1,19 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="MobArena.jar"/>
<classpathentry kind="lib" path="D:/General/Java/Minecraft/lib/BOSEconomy7.jar"/>
<classpathentry kind="lib" path="D:/General/Java/Minecraft/lib/Essentials.jar"/>
<classpathentry kind="lib" path="D:/General/Java/Minecraft/lib/iCo4.jar"/>
<classpathentry kind="lib" path="D:/General/Java/Minecraft/lib/iCo5.jar"/>
<classpathentry kind="lib" path="D:/General/Java/Minecraft/lib/MeanAdmins.jar"/>
<classpathentry kind="lib" path="D:/General/Java/Minecraft/lib/Permissions.jar"/>
<classpathentry kind="lib" path="D:/General/Java/Minecraft/lib/Register.jar"/>
<classpathentry kind="lib" path="D:/General/Java/Minecraft/lib/craftbukkit-0.0.1-SNAPSHOT.jar"/>
<classpathentry kind="lib" path="D:/General/Java/Minecraft/lib/iCo6.jar"/>
<classpathentry kind="lib" path="D:/General/Java/Minecraft/lib/MultiCurrency.jar"/>
<classpathentry kind="lib" path="D:/General/Java/Minecraft/lib/jdom.jar"/>
<classpathentry kind="lib" path="D:/General/Java/Minecraft/lib/Spout.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
-17
View File
@@ -1,17 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>MobArena</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
-41
View File
@@ -1,41 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="MobArena" default="dist" basedir=".">
<property name="pluginname" value="MobArena"/>
<property name="server" location="D:\General\Java\Minecraft\Minecraft Server\plugins"/>
<property name="src" location="src"/>
<property name="bin" location="bin"/>
<property name="lib" location="../lib"/>
<property name="res" location="resources"/>
<path id="classpath">
<fileset dir="${lib}" includes="**/*.jar"/>
<fileset dir="${res}" includes="**/*.*"/>
</path>
<target name="init">
<mkdir dir="${bin}"/>
</target>
<!-- Compile the source and put in the bin-folder -->
<target name="compile" depends="init">
<javac srcdir="${src}" destdir="${bin}" includeantruntime="false" classpathref="classpath"/>
</target>
<!-- Build a .jar and copy to server's plugins-folder -->
<target name="dist" depends="compile">
<delete file="${pluginname}.jar"/>
<jar jarfile="${pluginname}.jar">
<!-- Include the class-files (bin) and the resources (res) -->
<fileset dir="${bin}"/>
<fileset dir="${res}"/>
<!-- Set up the classpath so MobArena can find JDOM if needed -->
<manifest>
<attribute name="Main-Class" value="com.garbagemule.MobArena.MobArena"/>
<attribute name="Class-Path" value="plugins/MobArena/lib/jdom.jar MobArena/lib/jdom.jar"/>
</manifest>
</jar>
<!-- Copy to server and clean up -->
<copy file="${pluginname}.jar" tofile="${server}/${pluginname}.jar"/>
<delete dir="${bin}"/>
</target>
</project>