Statistics
| Revision:

root / tags / v10_RC2c / install / instalador-gvSIG-mac / build-comun.xml @ 34764

History | View | Annotate | Download (1.32 KB)

1 7873 mija
<project name="bundle-gvSIG" default="init" basedir=".">
2
        <property name="FULLVERSION" value="1.0"/>
3
        <!-- we store the resulting installer in this directory: -->
4
        <property name="INSTALLER_DIR" location="gvSIG-${FULLVERSION}_installer" />
5
6
        <taskdef name="jarbundler" classname="net.sourceforge.jarbundler.JarBundler" />
7
8
        <target name="init">
9
                <jarbundler
10
                        dir="."
11
                        name="gvSIG ${FULLVERSION}"
12
                        mainclass="com.iver.andami.Launcher"
13
                        arguments="gvSIG gvSIG/extensiones"
14
                        bundleid="com.iver.cit.gvsig"
15
                        developmentregion = "Spanish"
16
                        icon="logo gvsig.icns"
17
                        shortname="gvSIG"
18
                        stubfile="JavaApplicationStub"
19
                        version="${FULLVERSION}"
20
                        build="${build.number}"
21
                        infostring="gvSIG ${FULLVERSION}"
22
                        vmoptions ="-Xmx500M"
23
                        jvmversion ="1.4+"
24
                        extraclasspath = "andami.jar,lib/log4j-1.2.8.jar,lib/beans.jar,lib/gvsig-i18n.jar,lib/iver-utiles.jar,lib/castor-0.9.5.3-xml.jar,lib/crimson.jar,lib/xerces_2_5_0.jar,lib/javaws.jar,lib/xml-apis.jar,lib/JWizardComponent.jar,lib/looks-2.0.2.jar"
25
                        workingdirectory  = "$JAVAROOT"
26
                        showPlist="true"
27
                        >
28
                        <!-- build="${build.number}" -->
29
30
                    <javaproperty name="apple.laf.useScreenMenuBar" value="true"/>
31
32
                        <jarfileset dir="." includes="nothing!" excludes="*"/>
33
                        <javafileset dir="../../_fwAndami/" excludes="bin/ src/"/>
34
35
                </jarbundler>
36
37
        </target>
38
39
</project>