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/10/27 09:49:34 UTC

svn commit: r1189652 - in /felix/trunk/httplite: build.xml pom.xml

Author: kgilmer
Date: Thu Oct 27 07:49:34 2011
New Revision: 1189652

URL: http://svn.apache.org/viewvc?rev=1189652&view=rev
Log:
httplite: fix bundle activator header in manifest.

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

Modified: felix/trunk/httplite/build.xml
URL: http://svn.apache.org/viewvc/felix/trunk/httplite/build.xml?rev=1189652&r1=1189651&r2=1189652&view=diff
==============================================================================
--- felix/trunk/httplite/build.xml (original)
+++ felix/trunk/httplite/build.xml Thu Oct 27 07:49:34 2011
@@ -105,6 +105,8 @@
 			<attribute name="Bundle-Name" value="${project.description} (Complete bundle)"/>
 			<attribute name="Bundle-SymbolicName" value="${ant.project.name}"/>		
 			<attribute name="Bundle-Version" value="${project.version}.${DSTAMP}${TSTAMP}" />
+			<attribute name="Bundle-Activator" value="org.apache.felix.httplite.osgi.Activator" />
+			<attribute name="Bundle-Vendor" value="The Apache Software Foundation" />
 		</manifest>
 
 		<manifest file="${build.dir}/META-INF-MIN/MANIFEST.MF">
@@ -115,6 +117,8 @@
 			<attribute name="Bundle-Name" value="${project.description} (Minimum bundle)"/>
 			<attribute name="Bundle-SymbolicName" value="${ant.project.name}"/>		
 			<attribute name="Bundle-Version" value="${project.version}.${DSTAMP}${TSTAMP}" />
+			<attribute name="Bundle-Activator" value="org.apache.felix.httplite.osgi.Activator" />
+			<attribute name="Bundle-Vendor" value="The Apache Software Foundation" />
 		</manifest>
 
 		<jar destfile="${dist.dir}/${ant.project.name}-debug-all-${project.version}.jar" manifest="${build.dir}/META-INF-ALL/MANIFEST.MF">

Modified: felix/trunk/httplite/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/httplite/pom.xml?rev=1189652&r1=1189651&r2=1189652&view=diff
==============================================================================
--- felix/trunk/httplite/pom.xml (original)
+++ felix/trunk/httplite/pom.xml Thu Oct 27 07:49:34 2011
@@ -58,8 +58,7 @@
 						<Private-Package>org.apache.felix.http.lightweight.*
 						</Private-Package>
 						<Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
-						<Bundle-Activator>org.apache.felix.http.lightweight.osgi.Activator
-						</Bundle-Activator>
+						<Bundle-Activator>org.apache.felix.httplite.osgi.Activator</Bundle-Activator>
 						<Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
 						<Include-Resource>META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE</Include-Resource>
 					</instructions>