forked from frapu78/processeditor
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.xml
More file actions
184 lines (154 loc) · 6.58 KB
/
build.xml
File metadata and controls
184 lines (154 loc) · 6.58 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!--
Build XML file for ProcessEditor Workbench and Server.
(c) 2014 Frank Puhlmann.
-->
<project name="processeditor" basedir="." default="clean-build-run-workbench" xmlns:ivy="antlib:org.apache.ivy.ant">
<property name="src.dir" value="src"/>
<property name="pics.dir" value="pics"/>
<property name="www.dir" value="www"/>
<property name="resources.dir" value="resources"/>
<property name="submodule.src.dir" value="BPMConverter/src/main/"/>
<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-workbench" value="com.inubit.research.gui.Workbench"/>
<property name="main-class-server" value="com.inubit.research.server.ProcessEditorServer"/>
<property name="lib.dir" value="lib"/>
<property name="test.dir" value="test/de/uni_potsdam/hpi/bpt/bp2014/jeditor/"/>
<path id="classpath">
<fileset dir="${lib.dir}" includes="**/*.jar"/>
</path>
<fileset id="pics" dir="${pics.dir}">
<include name="**/*.gif"/>
<include name="**/*.jpg"/>
<include name="**/*.png"/>
</fileset>
<fileset id="www" dir="${www.dir}">
<include name="**/*.js"/>
<include name="**/*.css"/>
<include name="**/*.html"/>
</fileset>
<fileset id="resources" dir="${resources.dir}">
<include name="**/*.xml"/>
</fileset>
<!-- Properties necessary for ivy installation-->
<property name="ivy.install.version" value="2.1.0-rc2" />
<condition property="ivy.home" value="${env.IVY_HOME}">
<isset property="env.IVY_HOME" />
</condition>
<property name="ivy.home" value="${user.home}/.ant" />
<property name="ivy.jar.dir" value="${ivy.home}/lib" />
<property name="ivy.jar.file" value="${ivy.jar.dir}/ivy.jar" />
<!-- add targets for ivy -->
<target name="download-ivy" unless="offline">
<mkdir dir="${ivy.jar.dir}"/>
<!-- download Ivy from web site so that it can be used even without any special installation -->
<get src="https://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar"
dest="${ivy.jar.file}" usetimestamp="true"/>
</target>
<target name="init-ivy" depends="download-ivy">
<!-- try to load ivy here from ivy home, in case the user has not already dropped
it into ant's lib dir (note that the latter copy will always take precedence).
We will not fail as long as local lib dir exists (it may be empty) and
ivy is in at least one of ant's lib dir or the local lib dir. -->
<path id="ivy.lib.path">
<fileset dir="${ivy.jar.dir}" includes="*.jar"/>
</path>
<taskdef resource="org/apache/ivy/ant/antlib.xml"
uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path"/>
</target>
<target name="clean">
<delete dir="${build.dir}"/>
</target>
<target name="clean-w-deps">
<delete dir="${build.dir}"/>
<delete>
<fileset dir="${lib.dir}" includes="*.jar"/>
</delete>
</target>
<target name="compile" depends="deps">
<mkdir dir="${classes.dir}"/>
<javac source="1.7" target="1.7" srcdir="${src.dir}" destdir="${classes.dir}" classpathref="classpath">
<src path="${src.dir}"></src>
<src path="${submodule.src.dir}"></src>
</javac>
</target>
<target name="compile-wo-deps">
<mkdir dir="${classes.dir}"/>
<javac source="1.7" target="1.7" srcdir="${src.dir}" destdir="${classes.dir}" classpathref="classpath">
<src path="${src.dir}"></src>
<src path="${submodule.src.dir}"></src>
</javac>
</target>
<target name="jar-workbench" depends="compile-wo-deps">
<mkdir dir="${jar.dir}"/>
<jar destfile="${jar.dir}/${ant.project.name}.jar" basedir="${classes.dir}">
<archives>
<zips>
<fileset dir="${lib.dir}" includes="**/*.jar"/>
</zips>
</archives>
<fileset refid="pics"/>
<fileset refid="resources"/>
<manifest>
<attribute name="Main-Class" value="${main-class-workbench}"/>
</manifest>
</jar>
</target>
<target name="jar-server" depends="compile-wo-deps">
<mkdir dir="${jar.dir}"/>
<jar destfile="${jar.dir}/${ant.project.name}.jar" basedir="${classes.dir}">
<fileset refid="pics"/>
<fileset refid="www"/>
<fileset refid="resources"/>
<manifest>
<attribute name="Main-Class" value="${main-class-server}"/>
</manifest>
</jar>
</target>
<target name="run-workbench.jar" depends="jar-workbench">
<java jar="${jar.dir}/${ant.project.name}.jar" fork="true">
<classpath>
<path refid="classpath"/>
<path location="${jar.dir}/${ant.project.name}.jar"/>
</classpath>
</java>
</target>
<!--
Runs the server from the compiled jar.
-->
<target name="run-server.jar" depends="jar-server">
<java jar="${jar.dir}/${ant.project.name}.jar" fork="true">
<classpath>
<path refid="classpath"/>
<path location="${jar.dir}/${ant.project.name}.jar"/>
</classpath>
</java>
</target>
<target name="clean-build-workbench" depends="clean,jar-workbench"/>
<target name="clean-build-run-workbench" depends="clean,run-workbench.jar"/>
<target name="clean-build-server" depends="clean,jar-server"/>
<target name="clean-build-run-server" depends="clean,run-server.jar"/>
<target name="deps" description="--> retrieve dependencies with ivy">
<ivy:retrieve />
</target>
<target name="compileTests" depends="compile">
<javac source="1.7" target="1.7" srcdir="${test.dir}" destdir="${classes.dir}">
<classpath>
<path refid="classpath"/>
<pathelement location="${classes.dir}"/>
</classpath>
</javac>
</target>
<target name="test" depends="compileTests">
<junit showoutput="true" printsummary="yes" haltonfailure="yes" haltonerror="true">
<classpath>
<path refid="classpath"/>
<pathelement location="${classes.dir}"/>
</classpath>
<formatter type="plain" usefile="false"/>
<test name="de.uni_potsdam.hpi.bpt.bp2014.jeditor.visualization.pcm.PCMScenarioTest"/>
<test name="de.uni_potsdam.hpi.bpt.bp2014.jeditor.converter.adapter.acpm.ACPMAdapterTest"/>
</junit>
</target>
</project>