You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by kg...@apache.org on 2011/12/19 23:17:21 UTC

svn commit: r1220974 - /felix/trunk/httplite/complete/pom.xml

Author: kgilmer
Date: Mon Dec 19 22:17:21 2011
New Revision: 1220974

URL: http://svn.apache.org/viewvc?rev=1220974&view=rev
Log:
httplite: fix complete bundle pom to only package required classes rather than superset of dependencies.

Modified:
    felix/trunk/httplite/complete/pom.xml

Modified: felix/trunk/httplite/complete/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/httplite/complete/pom.xml?rev=1220974&r1=1220973&r2=1220974&view=diff
==============================================================================
--- felix/trunk/httplite/complete/pom.xml (original)
+++ felix/trunk/httplite/complete/pom.xml Mon Dec 19 22:17:21 2011
@@ -56,11 +56,10 @@
 			<plugin>
 				<groupId>org.apache.felix</groupId>
 				<artifactId>maven-bundle-plugin</artifactId>
-				<version>2.3.4</version>
+				<version>2.3.6</version>
 				<extensions>true</extensions>
 				<configuration>
 					<instructions>
-						<Export-Package />
 						<Private-Package>org.apache.felix.httplite.osgi, org.apache.felix.httplite.server, org.apache.felix.httplite.servlet</Private-Package>
 						<Export-Service>org.osgi.service.http.HttpService</Export-Service>
 						<Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
@@ -70,12 +69,8 @@
 						<Export-Package>
 							javax.servlet;version="2.4",
 							javax.servlet.http;version="2.4",
-							org.osgi.service.http;version="1.2",
-							*
-						</Export-Package>
-						<Import-Service>
-                            org.osgi.service.log.LogService;availability:=optional;multiple:=false
-                        </Import-Service>
+							org.osgi.service.http;version="1.2"																					
+						</Export-Package>						
                         <Bundle-DocURL>http://felix.apache.org/site/apache-felix-light-http-service.html</Bundle-DocURL>
 					</instructions>
 				</configuration>