forked from Crimsonfoxy/Statistician-v2
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathbuild.xml
More file actions
29 lines (29 loc) · 884 Bytes
/
build.xml
File metadata and controls
29 lines (29 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<project name="Statistics" default="build">
<target name="build">
<mkdir dir="build"/>
<javac srcdir="src" destdir="build" debug="on">
<classpath>
<fileset dir="lib">
<include name="*.jar"/>
</fileset>
</classpath>
</javac>
<copy todir="build">
<fileset dir=".">
<include name="*.yml"/>
</fileset>
</copy>
<copy todir="build/patches">
<fileset dir="patches">
<include name="*.sql"/>
</fileset>
</copy>
<copy todir="build/resources">
<fileset dir="resources">
<include name="*.yml"/>
</fileset>
</copy>
<jar jarfile="Statistics.jar" basedir="build"/>
<delete dir="build"/>
</target>
</project>