Statistics
| Revision:

root / trunk / extensions / extSelectionTools / build.xml @ 38571

History | View | Annotate | Download (4.84 KB)

1
        <project name="extSelectionTools" default="batch-build" basedir=".">
2

    
3
                <description>
4
                Installs the plugin extSelectionTools in gvSIG.
5
            </description>
6

    
7
                  <!-- set global properties for this build -->
8
                  <property name="src" location="src"/>
9
                  <property name="build" location="bin"/>
10
                  <property name="dist"  location="dist"/>
11
                  <property name="lib"  location="lib"/>
12
                  <property name="plugin" value="org.gvsig.selectionTools"/>
13
                  <property name="andami-lib" value="../_fwAndami/lib"/>
14
                  <property name="andami" value="../_fwAndami/"/>
15
                  <property name="extension-dir" location="../_fwAndami/gvSIG/extensiones"/>
16
                  <property name="validation-dir" location="../_fwAndami/lib"/>
17
                  <property name="gvSIGlib-dir" location="${extension-dir}/com.iver.cit.gvsig/lib"/>
18
                  <property name="model-dir" location="../_fwAndami/gvSIG/extensiones/"/>
19
                  <property name="img-dir" location="../_fwAndami/src/images"/>
20
                  <property name="theme-dir" location="../_fwAndami/theme"/>
21
                  <property name="gvSIG-dir" location="${extension-dir}/com.iver.cit.gvsig/"/>
22
                  <property name="jarName" value="org.gvsig.selectionTools.jar"/>
23
                <import file="../binaries/ant/utilities.xml"/>
24

    
25
         <target name="init">
26
            <!-- Create the time stamp -->
27
            <tstamp/>
28
            <!-- Create the build directory structure used by compile -->
29
            <mkdir dir="${build}"/>
30
            <mkdir dir="${dist}"/>
31
                  <!-- Creamos un fichero con el timeStamp para que lo lea el FPanelAbout -->
32
                  <!-- <buildnumber/> -->
33
          </target>
34

    
35
        <target name="batch-build" depends="compile,generate-without-source,generate-validation-without-source, generate-model-without-source">
36
        </target>
37

    
38
        <target name="buildNumber">
39
                <propertyfile
40
                        file="build.number"
41
                        comment="Build Number for ANT. Do not edit!">
42
                        <entry
43
                                key="build.number"
44
                                default="0"
45
                                type="int" operation="+"/>
46
                        </propertyfile>
47
                <property file="build.number"/>
48
        </target>
49

    
50
        <target name="clean"
51
                    description="cleans the build directories">
52
                <delete dir="${build}" failonerror="no"/>
53
                <delete dir="${dist}" failonerror="no"/>
54
        </target>
55

    
56

    
57
        <target name="distribution" depends="buildNumber,batch-build">
58
        </target>
59

    
60

    
61
        <target name="generate-without-source" description="generate the distribution without the source file" depends="make-package-info">
62
            <!-- Create the distribution directory -->
63
            <mkdir dir="${dist}"/>
64

    
65
            <!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
66
            <jar jarfile="${dist}/${plugin}.jar" basedir="${build}"/>
67

    
68
                <copy todir="${dist}">
69
                        <fileset dir="config/" includes="*"/>
70
            </copy>
71

    
72
                <mkdir dir="${dist}/images"/>
73
                <copy todir="${dist}/images">
74
                        <fileset dir="images" includes="*"/>
75
                </copy>
76
                <copy todir="${dist}">
77
                        <fileset dir="lib" includes="*"/>
78
                </copy>
79

    
80
            <loadproperties srcFile="build.number"/>
81
                <replace casesensitive="true"
82
                        file="${dist}/about.htm"
83
                        token="#build.number#"
84
                        value="${build.number}"/>
85
            <copy todir="${dist}">
86
                    <fileset dir="config" includes="text*.properties"/>
87
            </copy>
88

    
89
            <copy file="build.number" todir="${dist}"/>
90
                <copy file="package.info" todir="${dist}"/>
91

    
92
                <!-- <move file="${dist}/${plugin}.jar" todir="${gvSIGlib-dir}" />
93
            <move todir="${extension-dir}/${plugin}/">
94
                    <fileset dir="${dist}" includes="**/**" />
95
            </move> -->
96
        </target>
97

    
98
                <target name="compile" description="compile the source" >
99
                                <!-- Compile the Java code from ${src} to ${build} -->
100
                                <mkdir dir="${build}" />
101
                                <loadEclipseClasspath project="${basedir}"/>
102
                                <gvSIG-javac
103
                                        classpath="${eclipseClasspath}"
104
                                />
105

    
106
                                <!--<javac  srcdir="${src}"
107
                                        destdir="${build}"
108
                                        source="${JavaSourceVersion}"
109
                                        target="${JavaTargetVersion}"
110
                                        debug="${debug}"
111
                                        debuglevel="${debuglevel}">
112
                                    <classpath refid="libFMap.compile-classpath"/>
113
                                </javac>-->
114
                                <!-- copy data files -->
115
                                <copy todir="${build}">
116
                                        <fileset
117
                                                dir="src"
118
                                                excludes="**/*.java"/>
119
                                </copy>
120
                </target>
121

    
122
                 <target name="generate-validation-without-source" description="generate the validation module distribution without the source file">
123
                    <!-- Create the distribution directory -->
124
                    <mkdir dir="${dist}"/>
125
                    <!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
126

    
127
                         <!-- <copy todir="${build}/images">
128
                                     <fileset dir="images/" includes="*"/>
129
                         </copy> -->
130
                    <move todir="${extension-dir}/${plugin}/">
131
                            <fileset dir="${dist}"  includes="**/**"/>
132
                    </move>
133

    
134
                 </target>
135

    
136
                 <target name="generate-model-without-source" description="generate the model module distribution without the source file">
137
                    <!-- Create the distribution directory -->
138
                    <mkdir dir="${dist}"/>
139
                    <!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
140
                    <move todir="${extension-dir}/${plugin}/">
141
                            <fileset dir="${dist}" includes="**/**"/>
142
                    </move>
143

    
144
                 </target>
145
        </project>