Subversion Repositories eFlore/Applications.cel

Rev

Rev 2346 | Blame | Last modification | View Log | RSS feed

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

  <property file="local.properties" />
  <property file="build.properties"/>

  <target name="generate-vocabulary">
        <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>

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

  <path id="gwt">
        <fileset includes="*.jar" dir="${gwt-path}" />
        <fileset includes="*.jar" dir="${gwt-maps-path}" />
        <fileset includes="gwtext.jar" dir="${gwt-ext-path}" />
        <fileset includes="*.jar" dir="${gwt-ext-ux-path}" />
        <pathelement location="src" />
  </path>

  <target name="link-resources">
        <mkdir dir="${ext-js-dest-dir}"/>
        <mkdir dir="${ext-js-dest-dir}/resources"/>
        <mkdir dir="${ext-js-dest-dir}/adapter/ext"/>
        
        <copy file="${ext-js-dir}/ext-all.js" todir="${ext-js-dest-dir}"/>
        <copy todir="${ext-js-dest-dir}/resources">
          <fileset dir="${ext-js-dir}/resources"/>
        </copy>
        <copy file="${ext-js-dir}/adapter/ext/ext-base.js" todir="${ext-js-dest-dir}/adapter/ext"/>
        <copy todir="${js-dest-dir}/UploadDialog" overwrite="true">
          <fileset dir="vendors/gwt-ext-ux/UploadDialog"/>
        </copy>
  </target>

  <!-- Affiche toutes les propriétés -->
  <target name="test"><echoproperties/></target> <!-- sometimes useful -->

  <!-- Compile l'application pour la prod -->
  <target name="compile">
        <java classname="com.google.gwt.dev.Compiler" fork="true">
          <arg line="-localWorkers 2 -style DETAILED ${projectName}"/>
          <classpath refid="gwt"/>
        </java>
        <antcall target="link-resources"></antcall>
  </target> 

  <!-- Compilation rapide (draft) -->
  <target name="compile-quick">
        <java classname="com.google.gwt.dev.Compiler" fork="true">
          <arg line="-style DETAILED -draftCompile ${projectTestName}" />
          <classpath refid="gwt"/>
        </java>
        <antcall target="link-resources"></antcall>
  </target> 

  <!-- Compilation debug (avec plein de logs) -->
  <target name="compile-debug">
        <java classname="com.google.gwt.dev.Compiler" fork="true">
          <arg line="-style DETAILED -logLevel DEBUG"/>
          <arg value="${projectName}" />
          <classpath refid="gwt"/>
        </java>
        <antcall target="link-resources"></antcall>
  </target>

  <!-- Lance l'application en mode hosted -->
  <target name="launch-hosted">
        <java classname="com.google.gwt.dev.DevMode" spawn="true" fork="true">
          <arg line="-startupUrl http://${cel-host}/${cel-base-url} -noserver -codeServerPort auto ${projectName}" />
          <classpath refid="gwt"/>
        </java>
  </target> 

</project>