You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by sv...@apache.org on 2017/03/07 21:10:14 UTC

[2/6] brooklyn-server git commit: Remove rest-api explicit import-package version

Remove rest-api explicit import-package version


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/9ea1347f
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/9ea1347f
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/9ea1347f

Branch: refs/heads/master
Commit: 9ea1347f88aabaeba6de9b29a8d9f081b5b2a0ef
Parents: 4bc707b
Author: Aled Sage <al...@gmail.com>
Authored: Mon Jan 9 14:45:58 2017 +0000
Committer: Aled Sage <al...@gmail.com>
Committed: Fri Feb 3 20:56:25 2017 +0000

----------------------------------------------------------------------
 rest/rest-api/pom.xml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/9ea1347f/rest/rest-api/pom.xml
----------------------------------------------------------------------
diff --git a/rest/rest-api/pom.xml b/rest/rest-api/pom.xml
index 4fc1355..7b3a05d 100644
--- a/rest/rest-api/pom.xml
+++ b/rest/rest-api/pom.xml
@@ -152,11 +152,11 @@
                 <artifactId>maven-bundle-plugin</artifactId>
                 <configuration>
                     <instructions>
-                        <Import-Package>
-                            javax.ws.rs;version="[1.1,2.0]",
-                            javax.ws.rs.core;version="[1.1,2.0]",
-                            *
-                        </Import-Package>
+                        <!-- 
+                            The default is to pull in javax.ws.rs;version="[2.0,3)", whereas jclouds-core 2.0 pulls
+                            in javax.ws.rs;version="[1.1,2)". However, that doesn't cause any harm because those
+                            are internal dependencies of jclouds (i.e. not part of the API).
+                        -->
                     </instructions>
                 </configuration>
             </plugin>