Reasonably major refactoring of the Felix class to implement the Bundle 
interface; now the Felix instance is the System Bundle instance. This
involved creating a new abstract Bundle base class, called FelixBundle,
which both Felix and BundleImpl now implement. 


git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@553333 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/framework/pom.xml b/framework/pom.xml
index f801259..53e1d7d 100644
--- a/framework/pom.xml
+++ b/framework/pom.xml
@@ -55,6 +55,28 @@
           </instructions>
         </configuration>
       </plugin>
+      <plugin>
+        <artifactId>maven-dependency-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>unpack</id>
+            <phase>package</phase>
+            <goals>
+              <goal>unpack</goal>
+            </goals>
+            <configuration>
+               <outputDirectory>${project.build.outputDirectory}</outputDirectory>
+              <artifactItems>
+                <artifactItem>
+                  <groupId>${project.groupId}</groupId>
+                  <artifactId>${project.artifactId}</artifactId>
+                  <version>${project.version}</version>
+                </artifactItem>
+              </artifactItems>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>  
 </project>