-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.xml
More file actions
73 lines (62 loc) · 2.17 KB
/
Copy pathbuild.xml
File metadata and controls
73 lines (62 loc) · 2.17 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
<project name="extNavTableFormsExample" default="generate-without-source" basedir=".">
<description>
Example of use of NavTableForms library.
</description>
<!-- set global properties for this build -->
<property name="src" location="src"/>
<property name="build" location="bin"/>
<property name="lib" location="lib" />
<property name="dist" location="dist"/>
<property name="plugin" value="es.icarto.gvsig.navtableformsexample"/>
<property name="extensionsDir" location="../_fwAndami/gvSIG/extensiones"/>
<target name="batch-build" depends="init, compile, create-jar, copy-data-files, copy-libs, move-to-andami">
</target>
<target name="init">
<tstamp/>
<mkdir dir="${dist}/lib" />
</target>
<target name="compile">
<mkdir dir="${build}" />
<echo>${compile-classpath}</echo>
<javac srcdir="${src}"
destdir="${build}"
debug="${debug}"
debuglevel="${debuglevel}"
classpath="${compile-classpath}" />
</target>
<target name="create-jar">
<mkdir dir="${dist}"/>
<jar jarfile="${dist}/lib/${plugin}.jar" basedir="${build}" />
<jar update="true" jarfile="${dist}/lib/${plugin}.jar" basedir="images" includes="*" />
</target>
<target name="copy-data-files">
<copy file="config/config.xml" todir="${dist}" />
<copy todir="${dist}/images">
<fileset dir="images" includes="*" />
</copy>
<copy todir="${dist}">
<fileset dir="forms" includes="*" />
</copy>
<copy file="data/example1.xml" todir="${dist}" overwrite="yes" />
<copy file="data/example1.domain" todir="${dist}" overwrite="yes" />
<copy file="data/example1.alias" todir="${dist}" overwrite="yes" />
</target>
<target name="copy-libs">
<copy todir="${dist}/lib">
<fileset dir="lib" includes="*"/>
</copy>
</target>
<target name="move-to-andami">
<move todir="${extensionsDir}/${plugin}/">
<fileset dir="${dist}" includes="**/**"/>
</move>
</target>
<target name="generate-without-source"
description="generate the distribution without the source file"
depends="init, create-jar, copy-data-files, copy-libs, move-to-andami" >
</target>
<target name="clean">
<delete dir="${dist}"/>
<delete dir="${build}"/>
</target>
</project>