Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / build / projects / gvsig-geocoding / build.xml @ 28293

History | View | Annotate | Download (1.14 KB)

1
<project name="gvSIG base" default="work" basedir=".">
2

    
3
        <import file="../../build.xml" />
4
        <!--
5
        TODO: This target should call mvn install phase in a temporary dir, and afterwards call izPack to do the distribution of this plugin.
6
        target name="distribution" description="creates the final distribution of the plugin" depends="mvn-install,build-installer" /
7
        -->
8

    
9
        <target name="work" description="prepares system to begin working with eclipse" depends="install-gvsig-base" />
10
        <target name="eclipse" depends="mvn-eclipse-clean,mvn-eclipse-eclipse" />
11

    
12
        <target name="install-gvsig-base" depends="mvn-install-extensions"/>
13

    
14
        <target name="clean-gvsig-base" depends="mvn-clean"/>
15

    
16

    
17
        <target name="mvn-install-extensions">
18
                <maven>
19
                        <arg value="install" />
20
                        <arg value="-Dmaven.test.skip=true" />
21
                        <arg value="-Dinstall-extension" />
22
                </maven>
23
        </target>
24

    
25
        <target name="mvn-install">
26
                <maven>
27
                        <arg value="install" />
28
                </maven>
29
        </target>
30

    
31
        <target name="mvn-eclipse-clean">
32
                <maven>
33
                        <arg value="eclipse:clean" />
34
                </maven>
35
        </target>
36

    
37

    
38
        <target name="mvn-eclipse-eclipse">
39
                <maven>
40
                        <arg value="eclipse:eclipse" />
41
                </maven>
42
        </target>
43

    
44
</project>
45