New dependencies were added to main's pom file, which caused the generated
bundle JAR file to bloat because the <Private-Package> declaration was
too broad.


git-svn-id: https://svn.apache.org/repos/asf/incubator/felix/trunk@470854 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/main/pom.xml b/main/pom.xml
index 02c795f..929b257 100644
--- a/main/pom.xml
+++ b/main/pom.xml
@@ -62,7 +62,7 @@
             <Main-Class>org.apache.felix.main.Main</Main-Class>
             <Bundle-Name>Apache Felix</Bundle-Name>
             <Bundle-Description>OSGi R4 framework.</Bundle-Description>
-            <Private-Package>org.apache.felix.*,org.osgi.*</Private-Package>
+            <Private-Package>org.apache.felix.main.*,org.apache.felix.moduleloader.*,org.apache.felix.framework.*,org.osgi.*</Private-Package>
             <Import-Package>!*</Import-Package>
             <Include-Resource>{src/main/resources/}</Include-Resource>
           </instructions>