You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cz...@apache.org on 2013/02/20 16:56:00 UTC

svn commit: r1448263 - in /felix/trunk/inventory: pom.xml src/main/java/org/apache/felix/inventory/ src/main/java/org/apache/felix/status/

Author: cziegeler
Date: Wed Feb 20 15:56:00 2013
New Revision: 1448263

URL: http://svn.apache.org/r1448263
Log:
Rename status printer to inventory

Added:
    felix/trunk/inventory/src/main/java/org/apache/felix/inventory/
      - copied from r1448260, felix/trunk/inventory/src/main/java/org/apache/felix/status/
Removed:
    felix/trunk/inventory/src/main/java/org/apache/felix/status/
Modified:
    felix/trunk/inventory/pom.xml

Modified: felix/trunk/inventory/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/inventory/pom.xml?rev=1448263&r1=1448262&r2=1448263&view=diff
==============================================================================
--- felix/trunk/inventory/pom.xml (original)
+++ felix/trunk/inventory/pom.xml Wed Feb 20 15:56:00 2013
@@ -26,14 +26,12 @@
         <relativePath>../pom/pom.xml</relativePath>
     </parent>
 
-    <artifactId>org.apache.felix.status</artifactId>
+    <artifactId>org.apache.felix.inventory</artifactId>
     <packaging>bundle</packaging>
     <version>0.0.1-SNAPSHOT</version>
 
-    <name>Apache Felix Status</name>
-    <description>
-    Status Provider
-    </description>
+    <name>Apache Felix Inventory</name>
+    <description>Apache Felix Inventory provides some mechanisms to get the current state of the system and therefore provides an inventory of the system.</description>
     
     <build>
         <plugins>
@@ -48,7 +46,7 @@
                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                         <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
                         <DynamicImport-Package>javax.servlet, javax.servlet.http</DynamicImport-Package>
-                        <Bundle-Activator>org.apache.felix.status.impl.Activator</Bundle-Activator>
+                        <Bundle-Activator>org.apache.felix.inventory.impl.Activator</Bundle-Activator>
                     </instructions>
                 </configuration>
             </plugin>
@@ -66,9 +64,9 @@
     </build>    
 
     <scm>
-        <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/status-printer</connection>
-        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/status-printer</developerConnection>
-        <url>http://svn.apache.org/viewvc/felix/trunk/status-printer</url>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/inventory</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/inventory</developerConnection>
+        <url>http://svn.apache.org/viewvc/felix/trunk/inventory</url>
     </scm>
 
     <dependencies>