Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / build / projects / gvsig-standard / build.xml @ 28577

History | View | Annotate | Download (1.1 KB)

1 23399 jmvivo
<project name="gvSIG standart" 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" />
10
        <target name="eclipse" depends="mvn-clean,mvn-eclipse-clean,mvn-eclipse-eclipse" />
11
12
        <target name="install-gvsig" depends="mvn-clean,mvn-install-extensions"/>
13
14
15
        <target name="mvn-install-extensions">
16
                <maven>
17
                        <arg value="install" />
18
                        <arg value="-Dmaven.test.skip=true" />
19
                        <arg value="-Dinstall-extension" />
20
                </maven>
21
        </target>
22
23
        <target name="mvn-install">
24
                <maven>
25
                        <arg value="install" />
26
                </maven>
27
        </target>
28
29
        <target name="mvn-eclipse-clean">
30
                <maven>
31
                        <arg value="eclipse:clean" />
32
                </maven>
33
        </target>
34
35
36
        <target name="mvn-eclipse-eclipse">
37
                <maven>
38
                        <arg value="eclipse:eclipse" />
39
                </maven>
40
        </target>
41
42
</project>