Use exact CanaryMod jar name
This commit is contained in:
parent
67d46db748
commit
2eeb3be1cb
2 changed files with 11 additions and 2 deletions
13
build.xml
13
build.xml
|
@ -1,9 +1,18 @@
|
||||||
<project name="scriptcraft" default="package" basedir=".">
|
<project name="scriptcraft" default="package" basedir=".">
|
||||||
<property file="build.properties"/>
|
<property file="build.properties"/>
|
||||||
<description>Builds the scriptcraft.jar file - a plugin for bukkit</description>
|
<description>Builds the scriptcraft.jar file - a plugin for bukkit</description>
|
||||||
|
<!-- ScriptCraft works with:
|
||||||
|
* CanaryMod
|
||||||
|
* Bukkit
|
||||||
|
* Glowstone (which is bukkit-compatible)
|
||||||
|
-->
|
||||||
<property name="src.canary" location="src/main/java/canary"/>
|
<property name="src.canary" location="src/main/java/canary"/>
|
||||||
<property name="lib.canary" location="lib/canary.jar"/>
|
|
||||||
<property name="src.bukkit" location="src/main/java/bukkit"/>
|
<property name="src.bukkit" location="src/main/java/bukkit"/>
|
||||||
|
|
||||||
|
<!-- compiles against these libraries -->
|
||||||
|
<property name="lib.canary" location="lib/CanaryMod-1.7.10-1.1.3-SNAPSHOT-shaded.jar"/>
|
||||||
|
<property name="lib.bukkit" location="lib/bukkit-1.7.9-R0.2.jar"/>
|
||||||
|
|
||||||
<property name="build" location="target/classes"/>
|
<property name="build" location="target/classes"/>
|
||||||
<property name="dist" location="target/" />
|
<property name="dist" location="target/" />
|
||||||
<property name="minecraft.dir" location="${dist}/minecraft" />
|
<property name="minecraft.dir" location="${dist}/minecraft" />
|
||||||
|
@ -55,7 +64,7 @@
|
||||||
<src path="${src.bukkit}"/>
|
<src path="${src.bukkit}"/>
|
||||||
<classpath>
|
<classpath>
|
||||||
<pathelement path="${lib.canary}" />
|
<pathelement path="${lib.canary}" />
|
||||||
<pathelement path="lib/bukkit-1.7.9-R0.2.jar" />
|
<pathelement path="${lib.bukkit}" />
|
||||||
</classpath>
|
</classpath>
|
||||||
</javac>
|
</javac>
|
||||||
</target>
|
</target>
|
||||||
|
|
Binary file not shown.
Reference in a new issue