summaryrefslogtreecommitdiffstats
path: root/themes
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-10-09 17:58:01 +0300
committerArtur Signell <artur@vaadin.com>2012-10-09 18:54:37 +0300
commit45e2be6ab35e730197a314d3276a61d682c72419 (patch)
treed7391c17c975ff7b0e10063a23111180741b9a12 /themes
parentd693378d9350934aebbf3b3562c1132fbbbd7a64 (diff)
downloadvaadin-framework-45e2be6ab35e730197a314d3276a61d682c72419.tar.gz
vaadin-framework-45e2be6ab35e730197a314d3276a61d682c72419.zip
Allow specifying prefixes also for resource directories (#9793)
* Export VAADIN/widgetsets/* in client-compiled * Export VAADIN/themes/* in themes * Export VAADIN in server (vaadinBootstrap.js) Change-Id: I15b0f7352779479bf73585017f0b95492692f73b
Diffstat (limited to 'themes')
-rw-r--r--themes/build.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/themes/build.xml b/themes/build.xml
index 83675867ad..c2437c86ae 100644
--- a/themes/build.xml
+++ b/themes/build.xml
@@ -12,7 +12,7 @@
<!-- global properties -->
<property name="module.name" value="vaadin-themes" />
<property name="result.dir" value="result" />
- <property name="theme.result.dir" value="${result.dir}/VAADIN/themes" />
+ <property name="theme.result.dir" value="${result.dir}/VAADIN/themes/" />
<union id="jar.includes">
<fileset dir="${result.dir}">
@@ -43,6 +43,7 @@
<target name="jar" depends="compile-themes">
<antcall target="common.jar">
+ <param name="osgi.extra.package.prefixes" value="VAADIN/themes" />
<reference torefid="extra.jar.includes" refid="jar.includes" />
</antcall>
</target>