httplite: fix bundle activator header in manifest.

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1189652 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/httplite/build.xml b/httplite/build.xml
index c3f93aa..bfcede3 100644
--- a/httplite/build.xml
+++ b/httplite/build.xml
@@ -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">
diff --git a/httplite/pom.xml b/httplite/pom.xml
index d211b03..fe321b9 100644
--- a/httplite/pom.xml
+++ b/httplite/pom.xml
@@ -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>