You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by hi...@apache.org on 2012/12/28 15:54:24 UTC

svn commit: r1426532 - /ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/BundleInfoAdapter.java

Author: hibou
Date: Fri Dec 28 14:54:24 2012
New Revision: 1426532

URL: http://svn.apache.org/viewvc?rev=1426532&view=rev
Log:
Some Eclipse plugins has this header 'Eclipse-BundleShape' in the manifest. Maybe worth supporting.

Modified:
    ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/BundleInfoAdapter.java

Modified: ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/BundleInfoAdapter.java
URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/BundleInfoAdapter.java?rev=1426532&r1=1426531&r2=1426532&view=diff
==============================================================================
--- ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/BundleInfoAdapter.java (original)
+++ ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/BundleInfoAdapter.java Fri Dec 28 14:54:24 2012
@@ -114,6 +114,8 @@ public class BundleInfoAdapter {
         requirementAsDependency(md, bundle, exportedPkgNames);
 
         if (baseUri != null) {
+            // TODO handle:
+            // Eclipse-BundleShape ::= ( 'jar' | 'dir' )
             String compression = bundle.hasInnerClasspath() ? "zip" : null;
             URI uri = bundle.getUri();
             if (uri != null) {