Subversion Repositories eFlore/Applications.cel

Rev

Rev 1370 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<project name="cel_GWT2" xmlns:artifact="urn:maven-artifact-ant" basedir=".">

        <target name="init">
                        <property file="local.properties" />
                        <property name="server-url" value="${server-url}" />
                        <property name="server-login" value="${server-login}" />
                        <property name="server-password" value="${server-password}" />
                        <property name="server-dir" value="${server-dir}" />
                        <property name="gwt-path" value="${gwt-path}" />
        </target>
        
        <target name="generate-vocabulary" depends="init">

                <java classname="com.google.gwt.i18n.tools.I18NSync" fork="true">
                        <arg value="org.tela_botanica.client.i18n.VocabulaireMetadonnees" />
                        <classpath>
                                <path>
                                        <pathelement location="${gwt-path}/gwt-user.jar" />
                                        <pathelement location="${gwt-path}/gwt-dev.jar" />
                                        <pathelement location="src" />
                                </path>
                        </classpath>
                </java>
        </target>
</project>