Fixed a couple of Maven warnings.
diff --git a/modules/all/pom.xml b/modules/all/pom.xml
index e00c9e3..8413087 100644
--- a/modules/all/pom.xml
+++ b/modules/all/pom.xml
@@ -189,7 +189,7 @@
                     <instructions>
                         <Bundle-Name>${project.artifactId}</Bundle-Name>
                         <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
-                        <Bundle-Description>${pom.description}</Bundle-Description>
+                        <Bundle-Description>${project.description}</Bundle-Description>
                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                         <Export-Package>
                             org.apache.axis2.transport.base.*;-split-package:=merge-last,
diff --git a/modules/base/pom.xml b/modules/base/pom.xml
index b734c11..31a11f0 100644
--- a/modules/base/pom.xml
+++ b/modules/base/pom.xml
@@ -59,7 +59,7 @@
                     <instructions>
                         <Bundle-Name>${project.artifactId}</Bundle-Name>
                         <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
-                        <Bundle-Description>${pom.description}</Bundle-Description>
+                        <Bundle-Description>${project.description}</Bundle-Description>
                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                         <Export-Package>
                             org.apache.axis2.transport.base.*;-split-package:=merge-last,
diff --git a/modules/jms/pom.xml b/modules/jms/pom.xml
index 5a5d56a..9de3b24 100644
--- a/modules/jms/pom.xml
+++ b/modules/jms/pom.xml
@@ -88,7 +88,7 @@
                     <instructions>
                         <Bundle-Name>${project.artifactId}</Bundle-Name>
                         <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
-                        <Bundle-Description>${pom.description}</Bundle-Description>
+                        <Bundle-Description>${project.description}</Bundle-Description>
                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                         <Export-Package>
                             org.apache.axis2.transport.jms.*;-split-package:=merge-last,
@@ -109,7 +109,7 @@
         <dependency>
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-transport-base</artifactId>
-            <version>${version}</version>
+            <version>${project.version}</version>
         </dependency>
 
       <dependency>
diff --git a/modules/mail/pom.xml b/modules/mail/pom.xml
index 64a3ee6..f1ffbba 100644
--- a/modules/mail/pom.xml
+++ b/modules/mail/pom.xml
@@ -50,7 +50,7 @@
           <instructions>
             <Bundle-Name>${project.artifactId}</Bundle-Name>
             <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
-            <Bundle-Description>${pom.description}</Bundle-Description>
+            <Bundle-Description>${project.description}</Bundle-Description>
             <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
             <Export-Package>
               org.apache.axis2.transport.mail.*;-split-package:=merge-last,
@@ -118,7 +118,7 @@
     <dependency>
       <groupId>org.apache.axis2</groupId>
       <artifactId>axis2-transport-base</artifactId>
-      <version>${version}</version>
+      <version>${project.version}</version>
       <exclusions>
         <!-- We want to choose the JavaMail implementation ourselves -->
         <exclusion>
diff --git a/modules/sms/pom.xml b/modules/sms/pom.xml
index 250393c..b000782 100644
--- a/modules/sms/pom.xml
+++ b/modules/sms/pom.xml
@@ -50,7 +50,7 @@
                     <instructions>
                         <Bundle-Name>${project.artifactId}</Bundle-Name>
                         <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
-                        <Bundle-Description>${pom.description}</Bundle-Description>
+                        <Bundle-Description>${project.description}</Bundle-Description>
                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                         <Export-Package>
                             org.apache.axis2.transport.sms.*;-split-package:=merge-last,
@@ -167,7 +167,7 @@
         <dependency>
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-transport-base</artifactId>
-            <version>${version}</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>com.google.code</groupId>
diff --git a/modules/tcp/pom.xml b/modules/tcp/pom.xml
index 2de1a1c..134ce54 100644
--- a/modules/tcp/pom.xml
+++ b/modules/tcp/pom.xml
@@ -89,7 +89,7 @@
                     <instructions>
                         <Bundle-Name>${project.artifactId}</Bundle-Name>
                         <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
-                        <Bundle-Description>${pom.description}</Bundle-Description>
+                        <Bundle-Description>${project.description}</Bundle-Description>
                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                         <Export-Package>
                             org.apache.axis2.transport.tcp.*;-split-package:=merge-last,
@@ -119,7 +119,7 @@
         <dependency>
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-transport-base</artifactId>
-            <version>${version}</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>commons-logging</groupId>
diff --git a/modules/udp/pom.xml b/modules/udp/pom.xml
index 12027df..00b0e9c 100644
--- a/modules/udp/pom.xml
+++ b/modules/udp/pom.xml
@@ -49,7 +49,7 @@
                     <instructions>
                         <Bundle-Name>${project.artifactId}</Bundle-Name>
                         <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
-                        <Bundle-Description>${pom.description}</Bundle-Description>
+                        <Bundle-Description>${project.description}</Bundle-Description>
                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                         <Export-Package>
                             org.apache.axis2.transport.udp.*;-split-package:=merge-last,
@@ -64,7 +64,7 @@
         <dependency>
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-transport-base</artifactId>
-            <version>${version}</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.axis2</groupId>
diff --git a/modules/xmpp/pom.xml b/modules/xmpp/pom.xml
index dc5d50f..f1bc25f 100644
--- a/modules/xmpp/pom.xml
+++ b/modules/xmpp/pom.xml
@@ -51,7 +51,7 @@
                     <instructions>
                         <Bundle-Name>${project.artifactId}</Bundle-Name>
                         <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
-                        <Bundle-Description>${pom.description}</Bundle-Description>
+                        <Bundle-Description>${project.description}</Bundle-Description>
                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                         <Export-Package>
                             org.apache.axis2.transport.xmpp.*;-split-package:=merge-last,