1370 |
aurelien |
1 |
<project name="cel_GWT2" xmlns:artifact="urn:maven-artifact-ant" basedir=".">
|
|
|
2 |
|
|
|
3 |
<target name="init">
|
|
|
4 |
<property file="local.properties" />
|
|
|
5 |
<property name="server-url" value="${server-url}" />
|
|
|
6 |
<property name="server-login" value="${server-login}" />
|
|
|
7 |
<property name="server-password" value="${server-password}" />
|
|
|
8 |
<property name="server-dir" value="${server-dir}" />
|
|
|
9 |
<property name="gwt-path" value="${gwt-path}" />
|
|
|
10 |
</target>
|
|
|
11 |
|
|
|
12 |
<target name="generate-vocabulary" depends="init">
|
|
|
13 |
|
|
|
14 |
<java classname="com.google.gwt.i18n.tools.I18NSync" fork="true">
|
|
|
15 |
<arg value="org.tela_botanica.client.i18n.VocabulaireMetadonnees" />
|
|
|
16 |
<classpath>
|
|
|
17 |
<path>
|
|
|
18 |
<pathelement location="${gwt-path}/gwt-user.jar" />
|
|
|
19 |
<pathelement location="${gwt-path}/gwt-dev.jar" />
|
|
|
20 |
<pathelement location="src" />
|
|
|
21 |
</path>
|
|
|
22 |
</classpath>
|
|
|
23 |
</java>
|
|
|
24 |
</target>
|
|
|
25 |
</project>
|