SLING-3746 - Combining Sling performance and Sling Junit

* bundlelize performance base

git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1608728 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/base/pom.xml b/base/pom.xml
index a4c6ce6..315493b 100644
--- a/base/pom.xml
+++ b/base/pom.xml
@@ -29,6 +29,7 @@
 
     <artifactId>org.apache.sling.performance.base</artifactId>
     <version>0.0.1-SNAPSHOT</version>
+    <packaging>bundle</packaging>
  
     <name>Apache Sling Performance Test Utilities</name>
     
@@ -117,6 +118,26 @@
                    <argLine>-Xms256m -Xmx1024m -XX:MaxPermSize=512m</argLine>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-scr-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Export-Package>
+                            org.apache.sling.performance.*;
+                        </Export-Package>
+                         <Import-Package>                         	 
+                         	!org.apache.sling.commons.testing.jcr.*,
+                         	*;
+                         </Import-Package>
+                    </instructions>
+                </configuration>
+            </plugin>  
         </plugins>
     </build>
 </project>