Statistics
| Revision:

root / trunk / extensions / extQuickInfo / build.xml @ 38628

History | View | Annotate | Download (4.93 KB)

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

    
3
                <description>
4
                Installs the plugin extQuickInfo 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.quickInfo"/>
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.quickInfo.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

    
51
        <target name="distribution" depends="buildNumber,batch-build">
52
        </target>
53

    
54

    
55
        <target name="clean"
56
                    description="cleans the build directories">
57
                <delete dir="${build}" failonerror="no"/>
58
                <delete dir="${dist}" failonerror="no"/>
59
        </target>
60

    
61

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

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

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

    
73
                <mkdir dir="${dist}/images"/>
74
                <copy todir="${dist}/images">
75
                        <fileset dir="images" includes="*"/>
76
                </copy>
77
                <mkdir dir="${dist}/xsl"/>
78
                <copy todir="${dist}/xsl">
79
                        <fileset dir="xsl" includes="*"/>
80
                </copy>
81
                <!-- <copy todir="${dist}">
82
                        <fileset dir="lib" includes="*"/>
83
                </copy> -->
84

    
85
            <loadproperties srcFile="build.number"/>
86
                <replace casesensitive="true"
87
                        file="${dist}/about.htm"
88
                        token="#build.number#"
89
                        value="${build.number}"/>
90
            <copy todir="${dist}">
91
                    <fileset dir="config" includes="text*.properties"/>
92
            </copy>
93

    
94
            <copy file="build.number" todir="${dist}"/>
95
                <copy file="package.info" todir="${dist}"/>
96

    
97
                <!-- <move file="${dist}/${plugin}.jar" todir="${gvSIGlib-dir}" />
98
            <move todir="${extension-dir}/${plugin}/">
99
                    <fileset dir="${dist}" includes="**/**" />
100
            </move> -->
101
        </target>
102

    
103
                <target name="compile" description="compile the source" >
104
                                <!-- Compile the Java code from ${src} to ${build} -->
105
                                <mkdir dir="${build}" />
106
                                <loadEclipseClasspath project="${basedir}"/>
107
                                <gvSIG-javac
108
                                        classpath="${eclipseClasspath}"
109
                                />
110

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

    
127
                 <target name="generate-validation-without-source" description="generate the validation module distribution without the source file">
128
                    <!-- Create the distribution directory -->
129
                    <mkdir dir="${dist}"/>
130
                    <!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
131

    
132
                         <!-- <copy todir="${build}/images">
133
                                     <fileset dir="images/" includes="*"/>
134
                         </copy> -->
135
                    <move todir="${extension-dir}/${plugin}/">
136
                            <fileset dir="${dist}"  includes="**/**"/>
137
                    </move>
138

    
139
                 </target>
140

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

    
149
                 </target>
150
        </project>