forked from BeelGroup/Docear-Desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
33 lines (26 loc) · 934 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
<project name="GlobalFreeplane" default="dist" basedir=".">
<target name="build">
<ant antfile="freeplane_framework/ant/build.xml" target="build"
inheritAll="false" />
</target>
<target name="dist">
<ant antfile="freeplane_framework/ant/build.xml" target="dist"
inheritAll="false" />
</target>
<target name="format-translation">
<ant antfile="JOrtho_0.4_freeplane/build.xml" target="format-translation"
inheritAll="false" />
<ant antfile="freeplane_framework/ant/build.xml" target="format-translation"
inheritAll="false" />
</target>
<target name="clean">
<ant antfile="freeplane_framework/ant/build.xml" target="clean"
inheritAll="false" />
<ant antfile="freeplane_ant/build.xml" target="clean"
inheritAll="false" />
<ant antfile="JOrtho_0.4_freeplane/build.xml" target="clean"
inheritAll="false" />
</target>
<target name="cleandist" depends="clean, dist">
</target>
</project>