-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
56 lines (47 loc) · 1.77 KB
/
build.xml
File metadata and controls
56 lines (47 loc) · 1.77 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
<project name="CartoTools" default="generate-without-source" basedir=".">
<!-- 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.udc.cartolab.gvsig.tools"/>
<property name="andami" location="../_fwAndami" />
<property name="extensionsDir" location="${andami}/gvSIG/extensiones"/>
<target name="generate-without-source" depends="init, create-jar, copy-data-files, move-to-andami" >
</target>
<target name="batch-build" depends="init, compile, create-jar, copy-data-files, move-to-andami">
</target>
<target name="init">
<tstamp/>
<mkdir dir="${build}"/>
<mkdir dir="${dist}"/>
<mkdir dir="${dist}/lib" />
</target>
<target name="compile" description="compile the source" >
<mkdir dir="${build}" />
<loadEclipseClasspath project="${basedir}" />
<gvSIG-javac classpath="${eclipseClasspath}" />
</target>
<target name="create-jar" description="Creates the plugin jar">
<jar jarfile="${dist}/lib/${plugin}.jar" basedir="${build}" includes="es/udc/cartolab/**" />
<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}">
<fileset dir="config" includes="text*.properties"/>
</copy>
<copy todir="${dist}/images">
<fileset dir="images" includes="*"/>
</copy>
</target>
<target name="move-to-andami">
<move todir="${extensionsDir}/${plugin}/">
<fileset dir="${dist}" includes="**/**"/>
</move>
</target>
<target name="clean">
<delete dir="${dist}"/>
<delete dir="${build}"/>
</target>
</project>