Applied patch (FELIX-199) to add a recursive goal to generate OSGi 
bundles for all dependencies.


git-svn-id: https://svn.apache.org/repos/asf/incubator/felix/trunk@527194 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/tools/maven2/maven-bundle-plugin/pom.xml b/tools/maven2/maven-bundle-plugin/pom.xml
index 425a8f3..b4f6f7b 100644
--- a/tools/maven2/maven-bundle-plugin/pom.xml
+++ b/tools/maven2/maven-bundle-plugin/pom.xml
@@ -30,13 +30,6 @@
  <groupId>org.apache.felix</groupId>
  <artifactId>maven-bundle-plugin</artifactId>
 
- <repositories>
-  <repository>
-   <id>aQute</id>
-   <url>http://www.aQute.biz/repo</url>
-   </repository>
- </repositories>
- 
  <packaging>maven-plugin</packaging>
  <name>Maven Bundle Plugin</name>
  <description> provides a maven plugin that allows that builds the jar by
@@ -48,7 +41,7 @@
  <dependencies>
   <dependency>
    <groupId>biz.aQute</groupId>
-   <artifactId>bnd</artifactId>
+   <artifactId>bndlib</artifactId>
    <version>0.0.116</version>
   </dependency>
   <dependency>
@@ -59,17 +52,28 @@
   <dependency>
    <groupId>org.apache.maven</groupId>
    <artifactId>maven-plugin-api</artifactId>
-   <version>2.0</version>
+   <version>2.0.6</version>
   </dependency>
   <dependency>
    <groupId>org.apache.maven</groupId>
    <artifactId>maven-archiver</artifactId>
-   <version>2.0</version>
+   <version>2.2</version>
   </dependency>
   <dependency>
    <groupId>org.apache.maven</groupId>
    <artifactId>maven-artifact</artifactId>
-   <version>2.0</version>
+   <version>2.0.6</version>
   </dependency>
+    <dependency>
+      <groupId>org.apache.maven.shared</groupId>
+      <artifactId>maven-dependency-tree</artifactId>
+      <version>1.0-alpha-3-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.shared</groupId>
+      <artifactId>maven-plugin-testing-harness</artifactId>
+      <version>1.0-beta-2-SNAPSHOT</version>
+      <scope>test</scope>
+    </dependency>
  </dependencies>
 </project>