Fix iPOJO API packaging

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1466478 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/ipojo/runtime/api/pom.xml b/ipojo/runtime/api/pom.xml
index 53d90cc..564930e 100644
--- a/ipojo/runtime/api/pom.xml
+++ b/ipojo/runtime/api/pom.xml
@@ -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>