diff options
Diffstat (limited to 'theme-compiler/build.xml')
-rw-r--r-- | theme-compiler/build.xml | 8 |
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"> |