-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
51 lines (44 loc) · 1.96 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<project name="ros2sy" basedir="." default="main">
<property name="pkg.dir" value="${ant.project.name}"/>
<property name="lib.dir" value="${pkg.dir}/lib"/>
<property name="src.dir" value="${pkg.dir}/src"/>
<property name="rsrc.dir" value="${pkg.dir}/resources"/>
<property name="build.dir" value="build"/>
<property name="classes.dir" value="${build.dir}/classes"/>
<property name="jar.dir" value="${build.dir}/jar"/>
<property name="main-class" value="ros2sy.synthesis.Synthesis"/>
<path id="classpath">
<fileset dir="${lib.dir}" includes="**/*.jar"></fileset>
</path>
<target name="clean">
<delete dir="${build.dir}"/>
</target>
<target name="compile">
<mkdir dir="${classes.dir}"/>
<javac includeantruntime="false" srcdir="${src.dir}" destdir="${classes.dir}" classpathref="classpath" debug="true"/>
</target>
<target name="jar" depends="compile">
<mkdir dir="${jar.dir}"/>
<jar destfile="${jar.dir}/${ant.project.name}.jar" basedir="${classes.dir}">
<manifest>
<attribute name="Main-Class" value="${main-class}"/>
</manifest>
</jar>
</target>
<target name="run" depends="jar">
<java fork="true" classname="${main-class}">
<classpath>
<pathelement location="${jar.dir}/${ant.project.name}.jar"/>
<pathelement location="${lib.dir}/sat4j-pb.jar"/>
<pathelement location="${lib.dir}/apt.jar"/>
<pathelement location="${lib.dir}/commons-lang3-3.4.jar"/>
<pathelement location="${lib.dir}/gson-2.8.5.jar"/>
<pathelement location="${lib.dir}/log4j-core-2.12.0.jar"/>
<pathelement location="${lib.dir}/log4j-api-2.12.0.jar"/>
</classpath>
<sysproperty key="log4j.configurationFile" value="${rsrc.dir}/log4j2.xml"/>
<!-- <sysproperty key="log4j.debug" value=""/>-->
</java>
</target>
<target name="main" depends="clean,run"></target>
</project>