Author: sagara
Date: Mon May  9 03:25:39 2011
New Revision: 1100870

URL: http://svn.apache.org/viewvc?rev=1100870&view=rev
Log:
Replaced pom.* with project.* as pom.* deprecated in Maven 3

Modified:
    axis/axis2/java/transports/trunk/modules/all/pom.xml
    axis/axis2/java/transports/trunk/modules/all/src/main/assembly/src.xml
    axis/axis2/java/transports/trunk/modules/base/pom.xml
    axis/axis2/java/transports/trunk/modules/http/pom.xml
    axis/axis2/java/transports/trunk/modules/jms/pom.xml
    axis/axis2/java/transports/trunk/modules/mail/pom.xml
    axis/axis2/java/transports/trunk/modules/sms/pom.xml
    axis/axis2/java/transports/trunk/modules/tcp/pom.xml
    axis/axis2/java/transports/trunk/modules/testkit/pom.xml
    axis/axis2/java/transports/trunk/modules/udp/pom.xml
    axis/axis2/java/transports/trunk/modules/xmpp/pom.xml

Modified: axis/axis2/java/transports/trunk/modules/all/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/transports/trunk/modules/all/pom.xml?rev=1100870&r1=1100869&r2=1100870&view=diff
==============================================================================
--- axis/axis2/java/transports/trunk/modules/all/pom.xml (original)
+++ axis/axis2/java/transports/trunk/modules/all/pom.xml Mon May  9 03:25:39 
2011
@@ -116,37 +116,37 @@
         <dependency>
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-transport-base</artifactId>
-            <version>${pom.version}</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-transport-jms</artifactId>
-            <version>${pom.version}</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-transport-mail</artifactId>
-            <version>${pom.version}</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-transport-tcp</artifactId>
-            <version>${pom.version}</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-transport-sms</artifactId>
-            <version>${pom.version}</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-transport-xmpp</artifactId>
-            <version>${pom.version}</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-transport-udp</artifactId>
-            <version>${pom.version}</version>
+            <version>${project.version}</version>
         </dependency>
     </dependencies>
 
@@ -176,7 +176,7 @@
                             <descriptors>
                                 
<descriptor>src/main/assembly/src.xml</descriptor>
                             </descriptors>
-                            
<finalName>axis2-transports-${pom.version}</finalName>
+                            
<finalName>axis2-transports-${project.version}</finalName>
                         </configuration>
                     </execution>
                 </executions>
@@ -188,10 +188,10 @@
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
-                        <Bundle-Name>${pom.artifactId}</Bundle-Name>
+                        <Bundle-Name>${project.artifactId}</Bundle-Name>
                         <Bundle-Vendor>Apache Software 
Foundation</Bundle-Vendor>
                         
<Bundle-Description>${pom.description}</Bundle-Description>
-                        
<Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+                        
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                         <Export-Package>
                             
org.apache.axis2.transport.base.*;-split-package:=merge-last,
                             
org.apache.axis2.transport.jms.*;-split-package:=merge-last,

Modified: axis/axis2/java/transports/trunk/modules/all/src/main/assembly/src.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/transports/trunk/modules/all/src/main/assembly/src.xml?rev=1100870&r1=1100869&r2=1100870&view=diff
==============================================================================
--- axis/axis2/java/transports/trunk/modules/all/src/main/assembly/src.xml 
(original)
+++ axis/axis2/java/transports/trunk/modules/all/src/main/assembly/src.xml Mon 
May  9 03:25:39 2011
@@ -28,7 +28,7 @@
     <fileSets>
         <fileSet>
             <directory>../..</directory>
-            
<outputDirectory>axis2-transports-${pom.version}-src</outputDirectory>
+            
<outputDirectory>axis2-transports-${project.version}-src</outputDirectory>
             <includes>
                 <include>NOTICE</include>
                 <include>LICENSE</include>

Modified: axis/axis2/java/transports/trunk/modules/base/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/transports/trunk/modules/base/pom.xml?rev=1100870&r1=1100869&r2=1100870&view=diff
==============================================================================
--- axis/axis2/java/transports/trunk/modules/base/pom.xml (original)
+++ axis/axis2/java/transports/trunk/modules/base/pom.xml Mon May  9 03:25:39 
2011
@@ -60,10 +60,10 @@
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
-                        <Bundle-Name>${pom.artifactId}</Bundle-Name>
+                        <Bundle-Name>${project.artifactId}</Bundle-Name>
                         <Bundle-Vendor>Apache Software 
Foundation</Bundle-Vendor>
                         
<Bundle-Description>${pom.description}</Bundle-Description>
-                        
<Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+                        
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                         <Export-Package>
                             
org.apache.axis2.transport.base.*;-split-package:=merge-last,
                             
org.apache.axis2.format.*;-split-package:=merge-last,

Modified: axis/axis2/java/transports/trunk/modules/http/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/transports/trunk/modules/http/pom.xml?rev=1100870&r1=1100869&r2=1100870&view=diff
==============================================================================
--- axis/axis2/java/transports/trunk/modules/http/pom.xml (original)
+++ axis/axis2/java/transports/trunk/modules/http/pom.xml Mon May  9 03:25:39 
2011
@@ -85,7 +85,7 @@
         <dependency>
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-transport-testkit</artifactId>
-            <version>${pom.version}</version>
+            <version>${project.version}</version>
             <scope>test</scope>
         </dependency>
 

Modified: axis/axis2/java/transports/trunk/modules/jms/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/transports/trunk/modules/jms/pom.xml?rev=1100870&r1=1100869&r2=1100870&view=diff
==============================================================================
--- axis/axis2/java/transports/trunk/modules/jms/pom.xml (original)
+++ axis/axis2/java/transports/trunk/modules/jms/pom.xml Mon May  9 03:25:39 
2011
@@ -89,10 +89,10 @@
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
-                        <Bundle-Name>${pom.artifactId}</Bundle-Name>
+                        <Bundle-Name>${project.artifactId}</Bundle-Name>
                         <Bundle-Vendor>Apache Software 
Foundation</Bundle-Vendor>
                         
<Bundle-Description>${pom.description}</Bundle-Description>
-                        
<Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+                        
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                         <Export-Package>
                             
org.apache.axis2.transport.jms.*;-split-package:=merge-last,
                         </Export-Package>
@@ -118,7 +118,7 @@
       <dependency>
           <groupId>org.apache.axis2</groupId>
           <artifactId>axis2-transport-testkit</artifactId>
-          <version>${pom.version}</version>
+          <version>${project.version}</version>
           <scope>test</scope>
       </dependency>
       <dependency>

Modified: axis/axis2/java/transports/trunk/modules/mail/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/transports/trunk/modules/mail/pom.xml?rev=1100870&r1=1100869&r2=1100870&view=diff
==============================================================================
--- axis/axis2/java/transports/trunk/modules/mail/pom.xml (original)
+++ axis/axis2/java/transports/trunk/modules/mail/pom.xml Mon May  9 03:25:39 
2011
@@ -51,10 +51,10 @@
         <extensions>true</extensions>
         <configuration>
           <instructions>
-            <Bundle-Name>${pom.artifactId}</Bundle-Name>
+            <Bundle-Name>${project.artifactId}</Bundle-Name>
             <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
             <Bundle-Description>${pom.description}</Bundle-Description>
-            <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+            <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
             <Export-Package>
               org.apache.axis2.transport.mail.*;-split-package:=merge-last,
             </Export-Package>
@@ -134,7 +134,7 @@
     <dependency>
       <groupId>org.apache.axis2</groupId>
       <artifactId>axis2-transport-testkit</artifactId>
-      <version>${pom.version}</version>
+      <version>${project.version}</version>
       <scope>test</scope>
       <exclusions>
         <!-- We want to choose the JavaMail implementation ourselves -->

Modified: axis/axis2/java/transports/trunk/modules/sms/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/transports/trunk/modules/sms/pom.xml?rev=1100870&r1=1100869&r2=1100870&view=diff
==============================================================================
--- axis/axis2/java/transports/trunk/modules/sms/pom.xml (original)
+++ axis/axis2/java/transports/trunk/modules/sms/pom.xml Mon May  9 03:25:39 
2011
@@ -51,10 +51,10 @@
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
-                        <Bundle-Name>${pom.artifactId}</Bundle-Name>
+                        <Bundle-Name>${project.artifactId}</Bundle-Name>
                         <Bundle-Vendor>Apache Software 
Foundation</Bundle-Vendor>
                         
<Bundle-Description>${pom.description}</Bundle-Description>
-                        
<Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+                        
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                         <Export-Package>
                             
org.apache.axis2.transport.sms.*;-split-package:=merge-last,
                         </Export-Package>

Modified: axis/axis2/java/transports/trunk/modules/tcp/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/transports/trunk/modules/tcp/pom.xml?rev=1100870&r1=1100869&r2=1100870&view=diff
==============================================================================
--- axis/axis2/java/transports/trunk/modules/tcp/pom.xml (original)
+++ axis/axis2/java/transports/trunk/modules/tcp/pom.xml Mon May  9 03:25:39 
2011
@@ -91,10 +91,10 @@
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
-                        <Bundle-Name>${pom.artifactId}</Bundle-Name>
+                        <Bundle-Name>${project.artifactId}</Bundle-Name>
                         <Bundle-Vendor>Apache Software 
Foundation</Bundle-Vendor>
                         
<Bundle-Description>${pom.description}</Bundle-Description>
-                        
<Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+                        
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                         <Export-Package>
                             
org.apache.axis2.transport.tcp.*;-split-package:=merge-last,
                         </Export-Package>

Modified: axis/axis2/java/transports/trunk/modules/testkit/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/transports/trunk/modules/testkit/pom.xml?rev=1100870&r1=1100869&r2=1100870&view=diff
==============================================================================
--- axis/axis2/java/transports/trunk/modules/testkit/pom.xml (original)
+++ axis/axis2/java/transports/trunk/modules/testkit/pom.xml Mon May  9 
03:25:39 2011
@@ -52,7 +52,7 @@
         <dependency>
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-transport-base</artifactId>
-            <version>${pom.version}</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>junit</groupId>
@@ -173,9 +173,9 @@
                         <configuration>
                             <docletArtifacts>
                                 <docletArtifact>
-                                    <groupId>${pom.groupId}</groupId>
-                                    <artifactId>${pom.artifactId}</artifactId>
-                                    <version>${pom.version}</version>
+                                    <groupId>${project.groupId}</groupId>
+                                    
<artifactId>${project.artifactId}</artifactId>
+                                    <version>${project.version}</version>
                                 </docletArtifact>
                             </docletArtifacts>
                             
<doclet>org.apache.axis2.transport.testkit.doclet.ResourceInfoDoclet</doclet>
@@ -196,9 +196,9 @@
                 <configuration>
                     <docletArtifacts>
                         <docletArtifact>
-                            <groupId>${pom.groupId}</groupId>
-                            <artifactId>${pom.artifactId}</artifactId>
-                            <version>${pom.version}</version>
+                            <groupId>${project.groupId}</groupId>
+                            <artifactId>${project.artifactId}</artifactId>
+                            <version>${project.version}</version>
                         </docletArtifact>
                     </docletArtifacts>
                     
<doclet>org.apache.axis2.transport.testkit.doclet.TestkitJavadocDoclet</doclet>

Modified: axis/axis2/java/transports/trunk/modules/udp/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/transports/trunk/modules/udp/pom.xml?rev=1100870&r1=1100869&r2=1100870&view=diff
==============================================================================
--- axis/axis2/java/transports/trunk/modules/udp/pom.xml (original)
+++ axis/axis2/java/transports/trunk/modules/udp/pom.xml Mon May  9 03:25:39 
2011
@@ -48,10 +48,10 @@
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
-                        <Bundle-Name>${pom.artifactId}</Bundle-Name>
+                        <Bundle-Name>${project.artifactId}</Bundle-Name>
                         <Bundle-Vendor>Apache Software 
Foundation</Bundle-Vendor>
                         
<Bundle-Description>${pom.description}</Bundle-Description>
-                        
<Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+                        
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                         <Export-Package>
                             
org.apache.axis2.transport.udp.*;-split-package:=merge-last,
                         </Export-Package>
@@ -70,7 +70,7 @@
         <dependency>
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-transport-testkit</artifactId>
-            <version>${pom.version}</version>
+            <version>${project.version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>

Modified: axis/axis2/java/transports/trunk/modules/xmpp/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/transports/trunk/modules/xmpp/pom.xml?rev=1100870&r1=1100869&r2=1100870&view=diff
==============================================================================
--- axis/axis2/java/transports/trunk/modules/xmpp/pom.xml (original)
+++ axis/axis2/java/transports/trunk/modules/xmpp/pom.xml Mon May  9 03:25:39 
2011
@@ -50,10 +50,10 @@
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
-                        <Bundle-Name>${pom.artifactId}</Bundle-Name>
+                        <Bundle-Name>${project.artifactId}</Bundle-Name>
                         <Bundle-Vendor>Apache Software 
Foundation</Bundle-Vendor>
                         
<Bundle-Description>${pom.description}</Bundle-Description>
-                        
<Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+                        
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                         <Export-Package>
                             
org.apache.axis2.transport.xmpp.*;-split-package:=merge-last,
                         </Export-Package>


Reply via email to