Subversion Repositories eFlore/Applications.del

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

<project name="del" xmlns:artifact="urn:maven-artifact-ant" basedir=".">
        
        <property name="gwt-path" value="C:/Program Files/Google/gwt/gwt-2.3.0" />

        <target name="gwt-compile">
                <java classname="com.google.gwt.dev.Compiler" fork="true">
                        <arg line="-logLevel INFO" />
                        <arg line="-style OBF" />
                        <arg value="org.tela_botanica.del.Del" />
                        <classpath>
                                <path>
                                        <pathelement location="${gwt-path}/gwt-user.jar" />
                                        <pathelement location="${gwt-path}/gwt-dev.jar" />
                                        <pathelement location="${gwt-path}/validation-api-1.0.0.GA-sources.jar" />
                                        <pathelement location="${gwt-path}/validation-api-1.0.0.GA.jar" />
                                        <pathelement location="src" />
                                        <fileset dir="war/WEB-INF/lib">
                                                <include name="**/*.jar" />
                                                <include name="**/*.xml" />
                                        </fileset>
                                </path>
                        </classpath>
                </java>
        </target>

        <target name="build-and-deploy-test" depends="gwt-compile">
                <ftp server="www.tela-botanica.org" remotedir="/www/eflore-test/del/" userid="" password="">
                        <fileset dir="war" />
                </ftp>
        </target>

</project>