You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by ak...@apache.org on 2006/03/07 14:53:41 UTC

svn commit: r383889 - in /incubator/felix/trunk/org.apache.felix.examples.spellcheckservice: ./ pom.xml

Author: akarasulu
Date: Tue Mar  7 05:53:39 2006
New Revision: 383889

URL: http://svn.apache.org/viewcvs?rev=383889&view=rev
Log:
initial commit of spell check  service example from tutorial

Added:
    incubator/felix/trunk/org.apache.felix.examples.spellcheckservice/
      - copied from r383817, incubator/felix/trunk/org.apache.felix.examples.dictionaryservice/
Modified:
    incubator/felix/trunk/org.apache.felix.examples.spellcheckservice/pom.xml

Modified: incubator/felix/trunk/org.apache.felix.examples.spellcheckservice/pom.xml
URL: http://svn.apache.org/viewcvs/incubator/felix/trunk/org.apache.felix.examples.spellcheckservice/pom.xml?rev=383889&r1=383817&r2=383889&view=diff
==============================================================================
--- incubator/felix/trunk/org.apache.felix.examples.spellcheckservice/pom.xml (original)
+++ incubator/felix/trunk/org.apache.felix.examples.spellcheckservice/pom.xml Tue Mar  7 05:53:39 2006
@@ -6,8 +6,8 @@
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <packaging>osgi-bundle</packaging>
-  <name>Apache Felix Examples: English Dictionary Service</name>
-  <artifactId>org.apache.felix.examples.dictionaryservice</artifactId>
+  <name>Apache Felix Examples: Spell Check Service</name>
+  <artifactId>org.apache.felix.examples.spellcheckservice</artifactId>
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
@@ -25,16 +25,16 @@
         <extensions>true</extensions>
         <configuration>
           <osgiManifest>
-            <bundleName>English Dictionary Example</bundleName>
+            <bundleName>Spell Check Service Example</bundleName>
             <bundleVendor>Apache Software Foundation</bundleVendor>
             <bundleDescription>
-              A bundle that registersan English dictionary service.
+              A bundle that registers a spell checking service.
             </bundleDescription>
             <bundleActivator>
-              org.apache.felix.examples.dictionaryservice.impl.Activator
+              org.apache.felix.examples.spellcheckservice.impl.Activator
             </bundleActivator>
             <exportPackage>
-              org.apache.felix.examples.dictionaryservice
+              org.apache.felix.examples.spellcheckservice
             </exportPackage>
           </osgiManifest>
         </configuration>