diff options
Diffstat (limited to 'client-compiler/build.xml')
-rw-r--r--[-rwxr-xr-x] | client-compiler/build.xml | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/client-compiler/build.xml b/client-compiler/build.xml index 3db3cbddba..2b5d9e34dc 100755..100644 --- a/client-compiler/build.xml +++ b/client-compiler/build.xml @@ -12,14 +12,22 @@ <property name="module.name" value="vaadin-client-compiler" /> <property name="result.dir" value="result" /> <path id="classpath.compile.custom"> - <fileset file="${gwt.dev.jar}"/> + <fileset file="${gwt.dev.jar}" /> </path> + <union id="compiler.includes"> + <union refid="client-compiler.gwt.includes" /> + <fileset dir="${result.dir}"> + <include name="com/google/gwt/dev/About.properties" /> + </fileset> + </union> + <target name="jar"> + <echo file="${result.dir}/com/google/gwt/dev/About.properties">gwt.version=${vaadin.version}</echo> + <antcall target="common.jar"> - <reference refid="client-compiler.gwt.includes" torefid="extra.jar.includes" /> + <reference refid="compiler.includes" torefid="extra.jar.includes" /> </antcall> - </target> <target name="publish-local" depends="jar"> @@ -29,7 +37,7 @@ <target name="clean"> <antcall target="common.clean" /> </target> - + <target name="tests"> <!--<antcall target="common.tests.run" />--> <echo>WHAT? No tests for ${module.name}!</echo> |