aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorJohannes Dahlström <johannesd@vaadin.com>2012-10-09 19:18:17 +0300
committerVaadin Code Review <review@vaadin.com>2012-10-09 16:33:39 +0000
commit4043a690b59befaa33e9fd814089af9a143adccf (patch)
tree18267ccf4172c410351067488ac1a90fcdb0af20 /server
parent0bb550b72c3be89084deebf29657769080b6ff59 (diff)
downloadvaadin-framework-4043a690b59befaa33e9fd814089af9a143adccf.tar.gz
vaadin-framework-4043a690b59befaa33e9fd814089af9a143adccf.zip
Explicitly specify symbolic names for each bundle to prevent names like "com.vaadin.vaadin-shared" (#9793)
Change-Id: I329e4d6b8334864be5023ef51225a6e340e74aa6
Diffstat (limited to 'server')
-rw-r--r--server/build.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/server/build.xml b/server/build.xml
index a61f341f58..48d5071919 100644
--- a/server/build.xml
+++ b/server/build.xml
@@ -10,6 +10,7 @@
<!-- global properties -->
<property name="module.name" value="vaadin-server" />
+ <property name="module.symbolic" value="com.vaadin.server" />
<property name="result.dir" value="result" />
<path id="classpath.compile.custom" />
<path id="classpath.tests.custom" />
@@ -24,7 +25,7 @@
<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;"/>
<antcall target="common.jar">
- <param name="require-bundle" value="com.vaadin.vaadin-shared;bundle-version=&quot;${vaadin.version}&quot;"/>
+ <param name="require-bundle" value="com.vaadin.shared;bundle-version=&quot;${vaadin.version}&quot;"/>
<param name="import-package" value="${server.osgi.import}" />
<param name="osgi.extra.package.prefixes" value="VAADIN" />
<reference torefid="extra.jar.includes" refid="jar.includes" />
@@ -47,4 +48,4 @@
</target>
-</project> \ No newline at end of file
+</project>