You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by mc...@apache.org on 2007/12/20 18:03:45 UTC

svn commit: r605980 - in /felix/trunk: configadmin/ eventadmin/impl/ examples/dictionaryclient/ examples/dictionaryclient2/ examples/dictionaryservice.itest/ examples/dictionaryservice/ examples/eventlistener/ examples/extenderbased.circle/ examples/ex...

Author: mcculls
Date: Thu Dec 20 09:03:43 2007
New Revision: 605980

URL: http://svn.apache.org/viewvc?rev=605980&view=rev
Log:
Required POM changes to use the latest snapshot of the bundleplugin for the complete build

Modified:
    felix/trunk/configadmin/pom.xml
    felix/trunk/eventadmin/impl/pom.xml
    felix/trunk/examples/dictionaryclient/pom.xml
    felix/trunk/examples/dictionaryclient2/pom.xml
    felix/trunk/examples/dictionaryservice.itest/pom.xml
    felix/trunk/examples/dictionaryservice/pom.xml
    felix/trunk/examples/eventlistener/pom.xml
    felix/trunk/examples/extenderbased.circle/pom.xml
    felix/trunk/examples/extenderbased.host/pom.xml
    felix/trunk/examples/extenderbased.square/pom.xml
    felix/trunk/examples/extenderbased.triangle/pom.xml
    felix/trunk/examples/frenchdictionary/pom.xml
    felix/trunk/examples/servicebased.circle/pom.xml
    felix/trunk/examples/servicebased.host/pom.xml
    felix/trunk/examples/servicebased.square/pom.xml
    felix/trunk/examples/servicebased.triangle/pom.xml
    felix/trunk/examples/spellcheckbinder/pom.xml
    felix/trunk/examples/spellcheckclient/pom.xml
    felix/trunk/examples/spellcheckscr/pom.xml
    felix/trunk/examples/spellcheckservice/pom.xml
    felix/trunk/framework/pom.xml
    felix/trunk/jmood/pom.xml
    felix/trunk/main/pom.xml
    felix/trunk/metatype/pom.xml
    felix/trunk/prefs/pom.xml
    felix/trunk/scr/pom.xml

Modified: felix/trunk/configadmin/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/configadmin/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/configadmin/pom.xml (original)
+++ felix/trunk/configadmin/pom.xml Thu Dec 20 09:03:43 2007
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.felix</groupId>
         <artifactId>felix</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <relativePath>../pom/pom.xml</relativePath>
     </parent>
 
@@ -53,7 +53,7 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>1.0.0</version>
+                <version>1.1.0-SNAPSHOT</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>

Modified: felix/trunk/eventadmin/impl/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/eventadmin/impl/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/eventadmin/impl/pom.xml (original)
+++ felix/trunk/eventadmin/impl/pom.xml Thu Dec 20 09:03:43 2007
@@ -2,7 +2,7 @@
   <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix</artifactId>
-    <version>1.0.0</version>
+    <version>1.1.0-SNAPSHOT</version>
     <relativePath>../../pom/pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
@@ -30,7 +30,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/examples/dictionaryclient/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/examples/dictionaryclient/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/examples/dictionaryclient/pom.xml (original)
+++ felix/trunk/examples/dictionaryclient/pom.xml Thu Dec 20 09:03:43 2007
@@ -29,7 +29,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/examples/dictionaryclient2/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/examples/dictionaryclient2/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/examples/dictionaryclient2/pom.xml (original)
+++ felix/trunk/examples/dictionaryclient2/pom.xml Thu Dec 20 09:03:43 2007
@@ -29,7 +29,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/examples/dictionaryservice.itest/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/examples/dictionaryservice.itest/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/examples/dictionaryservice.itest/pom.xml (original)
+++ felix/trunk/examples/dictionaryservice.itest/pom.xml Thu Dec 20 09:03:43 2007
@@ -59,7 +59,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/examples/dictionaryservice/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/examples/dictionaryservice/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/examples/dictionaryservice/pom.xml (original)
+++ felix/trunk/examples/dictionaryservice/pom.xml Thu Dec 20 09:03:43 2007
@@ -23,7 +23,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/examples/eventlistener/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/examples/eventlistener/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/examples/eventlistener/pom.xml (original)
+++ felix/trunk/examples/eventlistener/pom.xml Thu Dec 20 09:03:43 2007
@@ -23,7 +23,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/examples/extenderbased.circle/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/examples/extenderbased.circle/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/examples/extenderbased.circle/pom.xml (original)
+++ felix/trunk/examples/extenderbased.circle/pom.xml Thu Dec 20 09:03:43 2007
@@ -48,7 +48,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/examples/extenderbased.host/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/examples/extenderbased.host/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/examples/extenderbased.host/pom.xml (original)
+++ felix/trunk/examples/extenderbased.host/pom.xml Thu Dec 20 09:03:43 2007
@@ -43,7 +43,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/examples/extenderbased.square/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/examples/extenderbased.square/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/examples/extenderbased.square/pom.xml (original)
+++ felix/trunk/examples/extenderbased.square/pom.xml Thu Dec 20 09:03:43 2007
@@ -48,7 +48,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/examples/extenderbased.triangle/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/examples/extenderbased.triangle/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/examples/extenderbased.triangle/pom.xml (original)
+++ felix/trunk/examples/extenderbased.triangle/pom.xml Thu Dec 20 09:03:43 2007
@@ -48,7 +48,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/examples/frenchdictionary/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/examples/frenchdictionary/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/examples/frenchdictionary/pom.xml (original)
+++ felix/trunk/examples/frenchdictionary/pom.xml Thu Dec 20 09:03:43 2007
@@ -29,7 +29,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/examples/servicebased.circle/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/examples/servicebased.circle/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/examples/servicebased.circle/pom.xml (original)
+++ felix/trunk/examples/servicebased.circle/pom.xml Thu Dec 20 09:03:43 2007
@@ -48,7 +48,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/examples/servicebased.host/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/examples/servicebased.host/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/examples/servicebased.host/pom.xml (original)
+++ felix/trunk/examples/servicebased.host/pom.xml Thu Dec 20 09:03:43 2007
@@ -43,7 +43,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/examples/servicebased.square/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/examples/servicebased.square/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/examples/servicebased.square/pom.xml (original)
+++ felix/trunk/examples/servicebased.square/pom.xml Thu Dec 20 09:03:43 2007
@@ -48,7 +48,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/examples/servicebased.triangle/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/examples/servicebased.triangle/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/examples/servicebased.triangle/pom.xml (original)
+++ felix/trunk/examples/servicebased.triangle/pom.xml Thu Dec 20 09:03:43 2007
@@ -48,7 +48,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/examples/spellcheckbinder/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/examples/spellcheckbinder/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/examples/spellcheckbinder/pom.xml (original)
+++ felix/trunk/examples/spellcheckbinder/pom.xml Thu Dec 20 09:03:43 2007
@@ -41,7 +41,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/examples/spellcheckclient/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/examples/spellcheckclient/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/examples/spellcheckclient/pom.xml (original)
+++ felix/trunk/examples/spellcheckclient/pom.xml Thu Dec 20 09:03:43 2007
@@ -29,7 +29,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/examples/spellcheckscr/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/examples/spellcheckscr/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/examples/spellcheckscr/pom.xml (original)
+++ felix/trunk/examples/spellcheckscr/pom.xml Thu Dec 20 09:03:43 2007
@@ -61,7 +61,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/examples/spellcheckservice/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/examples/spellcheckservice/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/examples/spellcheckservice/pom.xml (original)
+++ felix/trunk/examples/spellcheckservice/pom.xml Thu Dec 20 09:03:43 2007
@@ -29,7 +29,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/framework/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/framework/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/framework/pom.xml (original)
+++ felix/trunk/framework/pom.xml Thu Dec 20 09:03:43 2007
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix</artifactId>
-    <version>1.0.0</version>
+    <version>1.1.0-SNAPSHOT</version>
     <relativePath>../pom/pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
@@ -48,7 +48,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/jmood/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/jmood/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/jmood/pom.xml (original)
+++ felix/trunk/jmood/pom.xml Thu Dec 20 09:03:43 2007
@@ -64,7 +64,7 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>1.0.0</version>
+                <version>1.1.0-SNAPSHOT</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>

Modified: felix/trunk/main/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/main/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/main/pom.xml (original)
+++ felix/trunk/main/pom.xml Thu Dec 20 09:03:43 2007
@@ -20,7 +20,7 @@
  <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix</artifactId>
-    <version>1.0.0</version>
+    <version>1.1.0-SNAPSHOT</version>
     <relativePath>../pom/pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
@@ -92,7 +92,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>

Modified: felix/trunk/metatype/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/metatype/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/metatype/pom.xml (original)
+++ felix/trunk/metatype/pom.xml Thu Dec 20 09:03:43 2007
@@ -4,7 +4,7 @@
     <parent>
         <groupId>org.apache.felix</groupId>
         <artifactId>felix</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <relativePath>../pom/pom.xml</relativePath>
     </parent>
 
@@ -39,7 +39,7 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>1.0.0</version>
+                <version>1.1.0-SNAPSHOT</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>

Modified: felix/trunk/prefs/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/prefs/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/prefs/pom.xml (original)
+++ felix/trunk/prefs/pom.xml Thu Dec 20 09:03:43 2007
@@ -25,7 +25,7 @@
     <parent>
         <groupId>org.apache.felix</groupId>
         <artifactId>felix</artifactId>
-        <version>1.0.0</version>
+        <version>1.1.0-SNAPSHOT</version>
         <relativePath>../pom</relativePath>
     </parent>
 
@@ -61,7 +61,7 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>1.0.0</version>
+                <version>1.1.0-SNAPSHOT</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>

Modified: felix/trunk/scr/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/scr/pom.xml?rev=605980&r1=605979&r2=605980&view=diff
==============================================================================
--- felix/trunk/scr/pom.xml (original)
+++ felix/trunk/scr/pom.xml Thu Dec 20 09:03:43 2007
@@ -40,7 +40,7 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>1.0.0</version>
+                <version>1.1.0-SNAPSHOT</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>