diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2012-10-09 19:18:17 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2012-10-09 16:33:39 +0000 |
commit | 4043a690b59befaa33e9fd814089af9a143adccf (patch) | |
tree | 18267ccf4172c410351067488ac1a90fcdb0af20 | |
parent | 0bb550b72c3be89084deebf29657769080b6ff59 (diff) | |
download | vaadin-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
-rw-r--r-- | buildhelpers/build.xml | 1 | ||||
-rw-r--r-- | client-compiled/build.xml | 3 | ||||
-rw-r--r-- | client-compiler/build.xml | 1 | ||||
-rw-r--r-- | client/build.xml | 1 | ||||
-rw-r--r-- | common.xml | 1 | ||||
-rw-r--r-- | server/build.xml | 5 | ||||
-rw-r--r-- | theme-compiler/build.xml | 1 | ||||
-rw-r--r-- | themes/build.xml | 3 |
8 files changed, 11 insertions, 5 deletions
diff --git a/buildhelpers/build.xml b/buildhelpers/build.xml index 80797415e5..d50e024ce4 100644 --- a/buildhelpers/build.xml +++ b/buildhelpers/build.xml @@ -8,6 +8,7 @@ <include file="../common.xml" as="common" /> <property name="module.name" value="vaadin-buildhelpers" /> + <property name="module.symbolic" value="com.vaadin.buildhelpers" /> <property name="result.dir" location="result" /> <path id="classpath.compile.custom" /> diff --git a/client-compiled/build.xml b/client-compiled/build.xml index e02acd31ba..d9f3da6271 100644 --- a/client-compiled/build.xml +++ b/client-compiled/build.xml @@ -11,6 +11,7 @@ <!-- global properties --> <property name="module.name" value="vaadin-client-compiled" /> + <property name="module.symbolic" value="com.vaadin.client-compiled" /> <property name="result.dir" value="result" /> <property name="gwtar.dir" location="${result.dir}/gwtar" /> <property name="work.dir" location="${result.dir}/work" /> @@ -128,4 +129,4 @@ <echo>WHAT? No tests for ${module.name}!</echo> </target> -</project>
\ No newline at end of file +</project> diff --git a/client-compiler/build.xml b/client-compiler/build.xml index 733ee73e32..95544708c1 100644 --- a/client-compiler/build.xml +++ b/client-compiler/build.xml @@ -10,6 +10,7 @@ <!-- global properties --> <property name="module.name" value="vaadin-client-compiler" /> + <property name="module.symbolic" value="com.vaadin.client-compiler" /> <property name="result.dir" value="result" /> <path id="classpath.compile.custom"> <fileset file="${gwt.dev.jar}" /> diff --git a/client/build.xml b/client/build.xml index 03c9c91401..26f92ee33f 100644 --- a/client/build.xml +++ b/client/build.xml @@ -10,6 +10,7 @@ <!-- global properties --> <property name="module.name" value="vaadin-client" /> + <property name="module.symbolic" value="com.vaadin.client" /> <property name="result.dir" value="result" /> <path id="classpath.compile.custom"> diff --git a/common.xml b/common.xml index 9c9adc0062..679853646f 100644 --- a/common.xml +++ b/common.xml @@ -156,7 +156,6 @@ <fail unless="module.name" message="No module.name parameter given" /> <property name="result.jar" location="${result.dir}/lib/${module.name}-${vaadin.version}.jar" /> - <property name="module.symbolic" value="com.vaadin.${module.name}" /> <property name="classes" location="{$result.dir}/classes" /> <property name="src" location="{$result.dir}/../src" /> 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="2.4.0",javax.servlet.http;version="2.4.0",org.jsoup;version="1.6.3""/> <antcall target="common.jar"> - <param name="require-bundle" value="com.vaadin.vaadin-shared;bundle-version="${vaadin.version}""/> + <param name="require-bundle" value="com.vaadin.shared;bundle-version="${vaadin.version}""/> <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> diff --git a/theme-compiler/build.xml b/theme-compiler/build.xml index 8a36513b71..86c73d1499 100644 --- a/theme-compiler/build.xml +++ b/theme-compiler/build.xml @@ -10,6 +10,7 @@ <!-- global properties --> <property name="module.name" value="vaadin-theme-compiler" /> + <property name="module.symbolic" value="com.vaadin.theme-compiler" /> <property name="result.dir" value="result" /> <path id="classpath.compile.custom"> </path> diff --git a/themes/build.xml b/themes/build.xml index c2437c86ae..a504d585dd 100644 --- a/themes/build.xml +++ b/themes/build.xml @@ -11,6 +11,7 @@ <!-- global properties --> <property name="module.name" value="vaadin-themes" /> + <property name="module.symbolic" value="com.vaadin.themes" /> <property name="result.dir" value="result" /> <property name="theme.result.dir" value="${result.dir}/VAADIN/themes/" /> @@ -100,4 +101,4 @@ <echo>WHAT? No tests for ${module.name}!</echo> </target> -</project>
\ No newline at end of file +</project> |