Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libInternationalization / build.xml @ 4460

History | View | Annotate | Download (1.41 KB)

1
<project name="i18n (Internationalization)" default="dist" basedir=".">
2
        <description>
3
        Instala el plugin
4
    </description>
5
        <!-- set global properties for this build -->
6
        <property name="src" location="src"/>
7
        <property name="build" location="bin"/>
8
        <property name="dist"  location="dist"/>
9
        <property name="plugin" value="org.gvsig.i18n"/>
10
        <property name="extensionDir" location="../_fwAndami/gvSIG/extensiones"/>
11
        <property name="build-doc" value="build-doc"/>
12

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

    
18
        <target name="build-doc" depends="" description="Genera la documentación">
19
                <javadoc
20
                        packagenames="org.gvsig.i18n.*"
21
                        sourcepath="src"
22
                        defaultexcludes="yes"
23
                        destdir="${build-doc}/org.gvsig.i18n"
24
                        windowtitle="libInternationalization API">
25
                </javadoc>
26
        </target>
27

    
28
        <target name="compile" depends="init"
29
                description="compile the source " >
30
            <!-- Compile the java code from ${src} into ${build}
31
            <javac srcdir="${src}" destdir="${build}"/> -->
32
        </target>
33

    
34
        <target name="dist" depends="compile"
35
                description="generate the distribution" >
36
                <!-- Create the distribution directory -->
37
                <mkdir dir="${dist}"/>
38
                
39
            <jar jarfile="${dist}/i18n.jar" basedir="${build}"/>
40
        </target>
41

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