You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cl...@apache.org on 2013/04/10 15:21:23 UTC

svn commit: r1466478 - /felix/trunk/ipojo/runtime/api/pom.xml

Author: clement
Date: Wed Apr 10 13:21:22 2013
New Revision: 1466478

URL: http://svn.apache.org/r1466478
Log:
Fix iPOJO API packaging

Modified:
    felix/trunk/ipojo/runtime/api/pom.xml

Modified: felix/trunk/ipojo/runtime/api/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/ipojo/runtime/api/pom.xml?rev=1466478&r1=1466477&r2=1466478&view=diff
==============================================================================
--- felix/trunk/ipojo/runtime/api/pom.xml (original)
+++ felix/trunk/ipojo/runtime/api/pom.xml Wed Apr 10 13:21:22 2013
@@ -50,7 +50,6 @@
                             http://felix.apache.org/site/apache-felix-ipojo-api.html
                         </Bundle-DocURL>
                         <Import-Package>
-                            !org.objectweb.asm.tree,
                             org.apache.felix.ipojo.composite;resolution:=optional,
                             *
                         </Import-Package>
@@ -61,6 +60,13 @@
                             org.objectweb.asm;version=3.3.1;-split-package:=merge-last,
                             org.objectweb.asm.signature;version=3.3.1;-split-package:=merge-last
                         </Export-Package>
+                        <Private-Package>
+                            org.objectweb.asm.commons,
+                            org.objectweb.asm.signature,
+                            org.objectweb.asm,
+                            org.objectweb.asm.tree,
+                            org.apache.felix.ipojo.manipulation*
+                        </Private-Package>
                     </instructions>
                 </configuration>
             </plugin>
@@ -114,12 +120,6 @@
             <groupId>asm</groupId>
             <artifactId>asm-all</artifactId>
             <version>3.3.1</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>asm</groupId>
-                    <artifactId>asm-tree</artifactId>
-                </exclusion>
-            </exclusions>
         </dependency>
     </dependencies>
 </project>