Statistics
| Revision:

root / trunk / install / deploy.xml @ 38066

History | View | Annotate | Download (1.91 KB)

1
<project name="Deploy gvSIG" default="deployTrunk" basedir="../appgvSIG">
2
    <description>
3
            Ant file to deploy gvSIG
4
    </description>
5

    
6
        <!-- overides gvSIG_projects, mandatoryProjets-->
7
        <import file="../install/gvsig_default_installation_projects.xml"/>
8
        <!-- be aware to not overwrite the appgvSIG targets -->
9
        <import file="../appgvSIG/build.xml"/>
10

    
11
        
12

    
13
        <!-- <loadproperties srcFile="${basedir}/../../appgvSIG/package.info"/> --> 
14
                
15

    
16

    
17
        <target name="deployTrunk">
18
                                <!--
19
                                        TODO: ¿Delete ${dist}?. {Delete _fwAndami/lib and the remaining stuff in root _fwAndami?
20
                                -->
21
                                        <antcall target="clean-all" inheritAll="false">
22
                                                <param name="gvSIG_projects" value="${gvSIG_dist}" />
23
                                                <param name="mandatoryProjets" value="${gvSIG_dist}" />
24
                                        </antcall>
25
                                
26
                                <ant antfile="../appgvSIG/build.xml" target="buildNumber" inheritall="false" />
27

    
28
                                <!-- Build and move to _fwAndami all projects -->
29
                                <!-- TODO:
30
                                        This target compile for 1.5. Maybe we should use 1.6
31
                                        Maybe "make-binary-distribution" should be used. That target makes: clean-all, build-number, build-all
32
                                        We should thing about debug=on and debug-level
33
                                -->
34
                                        <antcall target="build-all" inheritAll="false">
35
                                                <param name="gvSIG_projects" value="${gvSIG_dist}" />
36
                                                <param name="mandatoryProjets" value="${gvSIG_dist}" />
37
                                        </antcall>
38
                                <ant antfile="../gvsig_1_x_bindings/build.xml" inheritall="false" />
39
                                
40
                                <!-- fpuga. Workaround to get the binaries "compiled" at the same time for both platforms -->
41
                                <ant antfile="../binaries/w32/build.xml" inheritall="false" />
42
                                <ant antfile="../binaries/linux/build.xml" inheritall="false" />
43
                
44
                <!-- 
45
                We should recreate .exe and .sh files with the correct version and build number
46
                launch4j /home/fpuga/development/workspace/install/launch4j/gvsig_package_installer.xml
47
                launch4j /home/fpuga/development/workspace/install/launch4j/gvsig.xml 
48
                -->
49
                </target>
50
        
51

    
52
</project>