Modified the log bundle package structure, since there didn't appear to be
any need for an impl package when the log package was already private.


git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@743522 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/log/pom.xml b/log/pom.xml
index c518c80..33b9bb5 100644
--- a/log/pom.xml
+++ b/log/pom.xml
@@ -27,7 +27,7 @@
   <packaging>bundle</packaging>
   <name>Apache Felix Log Service</name>
   <description>
-    This bundle provides an implementation of the OSGi R4 Log service.
+    A simple implementation of the OSGi R4 Log service.
   </description>
   <version>0.9.0-SNAPSHOT</version>
   <artifactId>org.apache.felix.log</artifactId>
@@ -35,12 +35,12 @@
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>1.0.1</version>
+      <version>1.2.0</version>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>1.0.0</version>
+      <version>1.2.0</version>
     </dependency>
   </dependencies>
   <build>
@@ -53,9 +53,9 @@
         <configuration>
           <instructions>
             <Export-Package>org.osgi.service.log</Export-Package>
-            <Private-Package>org.apache.felix.log.impl</Private-Package>
+            <Private-Package>org.apache.felix.log</Private-Package>
             <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
-            <Bundle-Activator>${pom.artifactId}.impl.Activator</Bundle-Activator>
+            <Bundle-Activator>${pom.artifactId}.Activator</Bundle-Activator>
             <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
             <Export-Service>org.osgi.service.log.LogService,org.osgi.service.log.LogReaderService</Export-Service>
           </instructions>