Statistics
| Revision:

root / org.gvsig.toolbox / trunk / org.gvsig.toolbox / org.gvsig.toolbox.math / build.xml @ 327

History | View | Annotate | Download (853 Bytes)

1
<project name="SEXTANTE_LIB" default="generate-without-source" basedir=".">
2
    <description>
3
        SEXTANTE_LIB
4
    </description>
5
    <property name="version.number" value="0.7"/>
6

    
7
  <target name="generate-without-source"
8
    description="generate the distribution without the source file">
9

    
10
       <tstamp>
11
         <format property="TODAY" pattern="yyyy-MM-dd HH:mm:ss" />
12
       </tstamp>
13

    
14
    <manifest file="MANIFEST.MF">
15
        <attribute name="Implementation-Version"
16
            value="${version.number}"/>
17
        <attribute name="Built-Date" value="${TODAY}"/>
18
   </manifest>
19

    
20
    <jar jarfile="../dist/libMath.jar" manifest="MANIFEST.MF">
21
        <fileset dir="bin">
22
            <include name="**"/>
23
        </fileset>
24
    </jar>
25
          
26
    <copy todir="../dist">
27
            <fileset dir="lib" includes="**"/>
28
    </copy>
29

    
30
  </target>
31

    
32
</project>