summaryrefslogtreecommitdiffstats
path: root/server/build.xml
diff options
context:
space:
mode:
authorJohannes Dahlström <johannesd@vaadin.com>2013-05-13 17:34:16 +0300
committerVaadin Code Review <review@vaadin.com>2013-05-20 10:30:52 +0000
commit2772641acf8f84046e3ac42c8386b65e4f2346f2 (patch)
tree26aa4dda21b5ebaf11f627c0d13db5ea0610788e /server/build.xml
parent73a50dbf002b381411a7c6ca1d6b4e59a93bbe0c (diff)
downloadvaadin-framework-2772641acf8f84046e3ac42c8386b65e4f2346f2.tar.gz
vaadin-framework-2772641acf8f84046e3ac42c8386b65e4f2346f2.zip
OSGi support for vaadin-push (#11691)
* Require atmosphere-runtime in vaadin-push with visibility:=reexport * Require vaadin-push in vaadin-server with resolution:=optional Serving vaadinPush.js from vaadin-push will be handled by Florian's OSGi addon Change-Id: Ida3e1ae95eb17b0114e099d1425db73106aaeead
Diffstat (limited to 'server/build.xml')
-rw-r--r--server/build.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/build.xml b/server/build.xml
index d61f412883..1c84c7e6f5 100644
--- a/server/build.xml
+++ b/server/build.xml
@@ -24,8 +24,9 @@
<target name="jar">
<property name="server.osgi.import" value="javax.servlet;version=&quot;2.4.0&quot;,javax.servlet.http;version=&quot;2.4.0&quot;,org.jsoup;version=&quot;1.6.3&quot;,org.jsoup.parser;version=&quot;1.6.3&quot;,org.jsoup.nodes;version=&quot;1.6.3&quot;,org.jsoup.helper;version=&quot;1.6.3&quot;,org.jsoup.safety;version=&quot;1.6.3&quot;,org.json;version=&quot;0.0.20080701&quot;" />
+ <property name="server.osgi.require" value="com.vaadin.shared;bundle-version=&quot;${vaadin.version}&quot;,com.vaadin.push;bundle-version=&quot;${vaadin.version}&quot;;resolution:=optional" />
<antcall target="common.jar">
- <param name="require-bundle" value="com.vaadin.shared;bundle-version=&quot;${vaadin.version}&quot;"/>
+ <param name="require-bundle" value="${server.osgi.require}" />
<param name="import-package" value="${server.osgi.import}" />
<param name="osgi.extra.package.prefixes" value="VAADIN" />
<reference torefid="extra.jar.includes" refid="jar.includes" />