Statistics
| Revision:

root / trunk / extensions / extSextanteGvsigBindings / build.xml @ 24815

History | View | Annotate | Download (1.54 KB)

1
<project name="" default="generate-without-source" basedir=".">
2
    <description>
3
    </description>
4
  <!-- set global properties for this build -->
5
  <property name="extensions-dir" location="../_fwAndami/gvSIG/extensiones"/>
6
  <property name="gvSIG-lib-dir" location="${extensions-dir}/com.iver.cit.gvsig/lib"/>
7
  <property name="src" location="src"/>
8
  <property name="bin" location="bin"/>
9
  <property name="doc"  location="doc"/>
10
  <property name="dist"  location="dist"/>
11
  <property name="build" location="bin"/>
12
  <property name="without_src"  location="without_src"/>
13
  <property name="plugin" value="es.unex.sextante"/>
14
  <property name="andami"  location="../_fwAndami/lib"/>
15
  <property name="fmap"  location="../libFMap/lib"/>
16

    
17
  <target name="generate-without-source"
18
          description="generate the distribution without the source file">
19
    <!-- Create the distribution directory -->
20
    <mkdir dir="${without_src}"/>
21

    
22
    <jar jarfile="${without_src}/${plugin}.jar" basedir="${bin}"/>
23

    
24
    <delete file="${gvSIG-lib-dir}/jama.jar"/>
25
    <delete file="${gvSIG-lib-dir}/jts-1.8_gvSIG.jar"/>
26
    <copy todir="${without_src}">
27
            <fileset dir="config/" includes="*"/>
28
    </copy>
29
    <copy todir="${without_src}/images">
30
            <fileset dir="images" includes="**"/>
31
    </copy>
32
    <move todir="${extensions-dir}/${plugin}/">
33
            <fileset dir="${without_src}" includes="**/**"/>
34
    </move>
35
          <copy todir="${gvSIG-lib-dir}" overwrite="true">
36
             <fileset dir="./sextante" includes="**" />
37
    </copy>
38
  </target>
39

    
40
</project>