forked from sporst/JHexView
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
36 lines (32 loc) · 1022 Bytes
/
build.xml
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
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<project name="JHexView" default="binary" basedir=".">
<property name="jar.file" value="jhexview.jar" />
<property name="build.path" value="build" />
<property name="src.path" value="src" />
<target name="binary">
<mkdir dir="${build.path}"/>
<javac srcdir="${src.path}"
destdir="${build.path}"
source="1.8"
target="1.8"
deprecation="true"
debug="false"
debuglevel="lines,vars,source"
includeantruntime="false">
<!--<compilerarg value="-Xlint:unchecked"/>-->
</javac>
<copy todir="${build.path}">
<fileset dir="${src.path}" excludes="**/*.java"/>
</copy>
<jar destfile="${jar.file}"
basedir="${build.path}"
includes="**/*" />
</target>
<target name="clean">
<delete dir="${build.path}"/>
<delete file="${jar.file}"/>
<delete>
<fileset dir="${src.path}" includes="**/*.class"/>
</delete>
</target>
</project>