summaryrefslogtreecommitdiffstats
path: root/theme-compiler/build.xml
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-09-14 14:51:09 +0300
committerArtur Signell <artur@vaadin.com>2012-09-14 14:51:09 +0300
commit3a17a846bd835556f7ace57f187d9727fc484be2 (patch)
tree68e6dbfc62f9c99ed296973cc946b15d18e33751 /theme-compiler/build.xml
parentce2b41c52f75be7b7a74bd1680ef9589c6901bb2 (diff)
downloadvaadin-framework-3a17a846bd835556f7ace57f187d9727fc484be2.tar.gz
vaadin-framework-3a17a846bd835556f7ace57f187d9727fc484be2.zip
Include flute files also in theme-compiler (in addition to client) for now (#9609)7.0.0.beta1
Diffstat (limited to 'theme-compiler/build.xml')
-rw-r--r--theme-compiler/build.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/theme-compiler/build.xml b/theme-compiler/build.xml
index 300f2718aa..33612bef1b 100644
--- a/theme-compiler/build.xml
+++ b/theme-compiler/build.xml
@@ -6,18 +6,22 @@
</description>
<include file="../common.xml" as="common" />
<include file="../build.xml" as="vaadin" />
+ <include file="../gwt-files.xml" as="gwtfiles" />
<!-- global properties -->
<property name="module.name" value="vaadin-theme-compiler" />
<property name="result.dir" value="result" />
- <path id="classpath.compile.custom" />
+ <path id="classpath.compile.custom">
+ <!-- This is only temporary until there is a packaged modified flute jar -->
+ <pathelement path="${gwt.user.jar.files}" />
+ </path>
<path id="classpath.tests.custom" />
<!--<property name="classes.exclude" value="com/vaadin/buildhelpers/**" />-->
<target name="jar">
<antcall target="common.jar">
- <reference torefid="extra.jar.includes" refid="empty.reference" />
+ <reference torefid="extra.jar.includes" refid="theme-compiler.gwt.includes" />
</antcall>
</target>
<target name="publish-local" depends="jar">