summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml18
1 files changed, 11 insertions, 7 deletions
diff --git a/build.xml b/build.xml
index e0172132c..6d99694fb 100644
--- a/build.xml
+++ b/build.xml
@@ -5,24 +5,28 @@
<replace dir="." includes="**/src/messages*.properties" token="version: TeamCity" value="version: ${build.number}"/>
<replace dir="." includes="**/src/items.csv" token="version: TeamCity" value="version: ${build.number}"/>
</target>
- <target name="buildall" depends="setversion">
+ <target name="buildGM" depends="setversion">
+ <ant dir="EssentialsGroupManager" antfile="build.xml"/>
+ <ant dir="EssentialsGroupBridge" antfile="build.xml"/>
+ </target>
+ <target name="buildEss" depends="buildGM">
<ant dir="Essentials" antfile="build.xml"/>
+ </target>
+ <target name="buildRest" depends="buildEss">
<ant dir="EssentialsChat" antfile="build.xml"/>
<ant dir="EssentialsSpawn" antfile="build.xml"/>
<ant dir="EssentialsProtect" antfile="build.xml"/>
- <ant dir="EssentialsGroupManager" antfile="build.xml"/>
- <ant dir="EssentialsGroupBridge" antfile="build.xml"/>
<ant dir="EssentialsGeoIP" antfile="build.xml"/>
<ant dir="EssentialsXMPP" antfile="build.xml"/>
</target>
- <target name="collect" depends="buildall">
+ <target name="collect" depends="buildRest">
<mkdir dir="jars"/>
<copy todir="jars">
<fileset dir=".">
<include name="**/dist/Essentials*.jar"/>
- <include name="**/Essentials/src/config.yml" />
- <include name="**/src/messages*.properties" />
- <include name="**/src/items.csv" />
+ <include name="**/Essentials/src/config.yml" />
+ <include name="**/src/messages*.properties" />
+ <include name="**/src/items.csv" />
</fileset>
<flattenmapper/>
</copy>