File: build.xml

package info (click to toggle)
freeplane 1.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 17,692 kB
  • sloc: java: 65,086; xml: 2,841; sh: 190; ansic: 172; haskell: 55; makefile: 14
file content (29 lines) | stat: -rw-r--r-- 738 bytes parent folder | download | duplicates (2)
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="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">
			<property name="skip_bugreport" value="true" />
		</ant>
	</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>