summaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-12-02 12:38:03 +0200
committerArtur Signell <artur@vaadin.com>2012-12-02 15:16:36 +0200
commit1c4890ea52a3e5b7a4b47bef4cb4499b095fe77d (patch)
tree2100774f97c0043da9ff4b7668550a45376e200a /shared
parent84099ee2b8363c12a813157f9752981add5db113 (diff)
downloadvaadin-framework-1c4890ea52a3e5b7a4b47bef4cb4499b095fe77d.tar.gz
vaadin-framework-1c4890ea52a3e5b7a4b47bef4cb4499b095fe77d.zip
Correctly update version during build (#9624)
Change-Id: Ibe914273b27a109b6ce01928913434d0787baf71
Diffstat (limited to 'shared')
-rw-r--r--shared/build.xml22
1 files changed, 18 insertions, 4 deletions
diff --git a/shared/build.xml b/shared/build.xml
index 0e52673ddd..9023cbdcc1 100644
--- a/shared/build.xml
+++ b/shared/build.xml
@@ -11,12 +11,26 @@
<!-- global properties -->
<property name="module.name" value="vaadin-shared" />
<property name="module.symbolic" value="com.vaadin.shared" />
- <property name="result.dir" value="result" />
+ <property name="result.dir" location="result" />
+ <property name="src.filtered" location="${result.dir}/filtered-src" />
+ <property name="src" location="${src.filtered}" />
<path id="classpath.compile.custom" />
<target name="jar">
<property name="shared.osgi.import" value="org.json;version=&quot;20080701&quot;, com.google.gwt.thirdparty.guava.common.annotations, com.google.gwt.thirdparty.guava.common.base, com.google.gwt.thirdparty.guava.common.base.internal, com.google.gwt.thirdparty.guava.common.cache, com.google.gwt.thirdparty.guava.common.collect, com.google.gwt.thirdparty.guava.common.eventbus, com.google.gwt.thirdparty.guava.common.io, com.google.gwt.thirdparty.guava.common.net, com.google.gwt.thirdparty.guava.common.primitives, com.google.gwt.thirdparty.guava.common.util.concurrent, com.google.gwt.thirdparty.streamhtmlparser, com.google.gwt.thirdparty.streamhtmlparser.impl, com.google.gwt.thirdparty.streamhtmlparser.util, org.w3c.flute.parser, org.w3c.flute.parser.selectors, org.w3c.flute.util" />
+ <delete dir="${src.filtered}" />
+ <!-- Update version in Version.java -->
+ <copy todir="${src.filtered}">
+ <fileset dir="src">
+ </fileset>
+ <filterchain>
+ <replacetokens begintoken="@" endtoken="@">
+ <token key="VERSION" value="${vaadin.version}" />
+ </replacetokens>
+ </filterchain>
+ </copy>
+
<antcall target="common.jar">
<param name="import-package" value="${shared.osgi.import}" />
<reference refid="shared.gwt.includes" torefid="extra.jar.includes" />
@@ -29,11 +43,11 @@
<antcall target="common.publish-local" />
</target>
-
+
<target name="clean">
- <antcall target="common.clean"/>
+ <antcall target="common.clean" />
</target>
-
+
<target name="tests">
<!--<antcall target="common.tests.run" />-->
<echo>WHAT? No tests for ${module.name}!</echo>