Statistics
| Revision:

root / import / ext3D / trunk / libCacheService / build.xml @ 15291

History | View | Annotate | Download (1.39 KB)

1
<project name="libCacheService" default="create-jar" basedir=".">
2
          <!-- set global properties for this build -->
3
        <property name="src"  location="src"/>
4
        <property name="build"  location="bin"/>
5
        <property name="dist"  location="dist"/>
6
        <property name="targetDir" location="../ext3D/lib"/>
7
        <property name="jarName" value="libCacheService"/>
8
        <property name="andamiLibs" location="../_fwAndami/lib" />
9
        <property name="fmapLibs" location="../libFMap" />        
10
        <property name="compile-classpath" value="" />
11

    
12
  <target name="init">
13
    <!-- Create the time stamp -->
14
    <tstamp/>
15
  </target>
16

    
17
        <target name="batch-build"
18
                                description="compile the sources, create the jar file"
19
                                depends="compile,create-jar">
20
        </target>
21

    
22
        <target name="compile" description="compile the source">
23
                <!-- Compile the Java code from ${src} to ${build} -->
24
                <mkdir dir="${build}" />
25
                <javac        srcdir="${src}"
26
                                destdir="${build}"
27
                                source="1.4"
28
                                target="1.4"
29
                                debug="${debug}"
30
                                debuglevel="${debuglevel}"
31
                                classpath="${compile-classpath}"/>
32
        </target>
33

    
34
        <target name="create-jar" description="Crea el jar de la aplicacion">
35
                <!--<mkdir dir="${dist}" />-->
36
                  <jar jarfile="${targetDir}/${jarName}.jar" basedir="${build}"/>
37
        </target>
38

    
39
        <target name="clean" description="clean up">
40
                <!-- Delete the ${build} and ${dist} directory trees -->
41
                <delete dir="${build}" />
42
                <delete dir="${dist}" />
43
        </target>
44
  
45
</project>
46