aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'uitest/build.xml')
-rw-r--r--uitest/build.xml16
1 files changed, 15 insertions, 1 deletions
diff --git a/uitest/build.xml b/uitest/build.xml
index 279c50baf6..84e1e78d1b 100644
--- a/uitest/build.xml
+++ b/uitest/build.xml
@@ -345,7 +345,8 @@
<target name="copy-theme">
<fail unless="theme"
message="You must give the theme name to copy n the 'theme' parameter" />
- <property name="theme.source.dir" location="../WebContent/VAADIN/themes" />
+ <property name="theme.source.dir" location="../themes/src/main/resources/VAADIN/themes" />
+ <property name="webcontent.source.dir" location="../WebContent/VAADIN/themes" />
<copy todir="${theme.result.dir}">
<fileset dir="${theme.source.dir}">
@@ -358,6 +359,19 @@
<exclude name="${theme}/**/*.scss" />
</fileset>
</copy>
+ <copy todir="${theme.result.dir}">
+ <fileset dir="${webcontent.source.dir}">
+ <include name="${theme}/**/*.scss" />
+ </fileset>
+ <filterset refid="filter-vaadin.version" />
+ </copy>
+ <copy todir="${theme.result.dir}">
+ <fileset dir="${webcontent.source.dir}">
+ <exclude name="${theme}/**/*.scss" />
+ </fileset>
+ </copy>
+
+
</target>