You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2007/04/17 14:31:17 UTC

svn commit: r529578 - in /webservices/axis2/branches/java/1_2/modules: java2wsdl/pom.xml parent/pom.xml saaj-api/pom.xml tool/axis2-ant-plugin/pom.xml tool/axis2-eclipse-codegen-plugin/pom.xml tool/axis2-idea-plugin/pom.xml

Author: saminda
Date: Tue Apr 17 05:31:16 2007
New Revision: 529578

URL: http://svn.apache.org/viewvc?view=rev&rev=529578
Log:
Update the pom.xml to get mail and activation jars from Sun.

Modified:
    webservices/axis2/branches/java/1_2/modules/java2wsdl/pom.xml
    webservices/axis2/branches/java/1_2/modules/parent/pom.xml
    webservices/axis2/branches/java/1_2/modules/saaj-api/pom.xml
    webservices/axis2/branches/java/1_2/modules/tool/axis2-ant-plugin/pom.xml
    webservices/axis2/branches/java/1_2/modules/tool/axis2-eclipse-codegen-plugin/pom.xml
    webservices/axis2/branches/java/1_2/modules/tool/axis2-idea-plugin/pom.xml

Modified: webservices/axis2/branches/java/1_2/modules/java2wsdl/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/java2wsdl/pom.xml?view=diff&rev=529578&r1=529577&r2=529578
==============================================================================
--- webservices/axis2/branches/java/1_2/modules/java2wsdl/pom.xml (original)
+++ webservices/axis2/branches/java/1_2/modules/java2wsdl/pom.xml Tue Apr 17 05:31:16 2007
@@ -58,8 +58,8 @@
 			<artifactId>XmlSchema</artifactId>
 		</dependency>
 		<dependency>
-			<groupId>org.apache.geronimo.specs</groupId>
-			<artifactId>geronimo-javamail_1.4_spec</artifactId>
+			<groupId>javax.mail</groupId>
+			<artifactId>mail</artifactId>
 		</dependency>
 		<dependency>
 			<groupId>jaxen</groupId>

Modified: webservices/axis2/branches/java/1_2/modules/parent/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/parent/pom.xml?view=diff&rev=529578&r1=529577&r2=529578
==============================================================================
--- webservices/axis2/branches/java/1_2/modules/parent/pom.xml (original)
+++ webservices/axis2/branches/java/1_2/modules/parent/pom.xml Tue Apr 17 05:31:16 2007
@@ -87,8 +87,7 @@
 		<commons.io.version>1.2</commons.io.version>
 		<commons.logging.version>1.1</commons.logging.version>
 		<eclipse.version>3.2.0</eclipse.version>
-		<geronimo.spec.activation.version>1.0-M1</geronimo.spec.activation.version>
-		<geronimo.spec.javamail.version>1.0-M1</geronimo.spec.javamail.version>
+        <javamail.version>1.4</javamail.version>
 		<geronimo.spec.jms.version>1.1</geronimo.spec.jms.version>
 		<groovy.all.version>1.0-jsr-06</groovy.all.version>
 		<intellij.version>5.0</intellij.version>
@@ -386,9 +385,9 @@
 			<name>eclipse maven repository</name>
 			<url>http://repo1.maven.org/eclipse</url>
 		</repository>
-        <repository>
-            <id>apache-ibiblio-rsync</id>
-            <url>http://people.apache.org/repo/m2-ibiblio-rsync-repository/</url>
+        <repository>
+            <id>apache-ibiblio-rsync</id>
+            <url>http://people.apache.org/repo/m2-ibiblio-rsync-repository/</url>
         </repository>
 		<repository>
 			<id>jibx</id>
@@ -574,15 +573,10 @@
 				<version>${stax.api.version}</version>
 			</dependency>
 			<dependency>
-				<groupId>org.apache.geronimo.specs</groupId>
-				<artifactId>geronimo-activation_1.1_spec</artifactId>
-				<version>${geronimo.spec.activation.version}</version>
-			</dependency>
-			<dependency>
-				<groupId>org.apache.geronimo.specs</groupId>
-				<artifactId>geronimo-javamail_1.4_spec</artifactId>
-				<version>${geronimo.spec.javamail.version}</version>
-			</dependency>
+                <groupId>javax.mail</groupId>
+                <artifactId>mail</artifactId>
+                <version>${javamail.version}</version>
+            </dependency>
 			<dependency>
 				<groupId>org.apache.geronimo.specs</groupId>
 				<artifactId>geronimo-jms_1.1_spec</artifactId>

Modified: webservices/axis2/branches/java/1_2/modules/saaj-api/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/saaj-api/pom.xml?view=diff&rev=529578&r1=529577&r2=529578
==============================================================================
--- webservices/axis2/branches/java/1_2/modules/saaj-api/pom.xml (original)
+++ webservices/axis2/branches/java/1_2/modules/saaj-api/pom.xml Tue Apr 17 05:31:16 2007
@@ -32,12 +32,8 @@
 			<artifactId>xml-apis</artifactId>
 		</dependency>
 		<dependency>
-			<groupId>org.apache.geronimo.specs</groupId>
-			<artifactId>geronimo-javamail_1.4_spec</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.geronimo.specs</groupId>
-			<artifactId>geronimo-activation_1.1_spec</artifactId>
+			<groupId>javax.mail</groupId>
+			<artifactId>mail</artifactId>
 		</dependency>
 	</dependencies>
 	<build>

Modified: webservices/axis2/branches/java/1_2/modules/tool/axis2-ant-plugin/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/tool/axis2-ant-plugin/pom.xml?view=diff&rev=529578&r1=529577&r2=529578
==============================================================================
--- webservices/axis2/branches/java/1_2/modules/tool/axis2-ant-plugin/pom.xml (original)
+++ webservices/axis2/branches/java/1_2/modules/tool/axis2-ant-plugin/pom.xml Tue Apr 17 05:31:16 2007
@@ -96,12 +96,8 @@
 			<artifactId>stax-api</artifactId>
 		</dependency>
 		<dependency>
-			<groupId>org.apache.geronimo.specs</groupId>
-			<artifactId>geronimo-javamail_1.4_spec</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.geronimo.specs</groupId>
-			<artifactId>geronimo-activation_1.1_spec</artifactId>
+			<groupId>javax.mail</groupId>
+			<artifactId>mail</artifactId>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.ant</groupId>

Modified: webservices/axis2/branches/java/1_2/modules/tool/axis2-eclipse-codegen-plugin/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/tool/axis2-eclipse-codegen-plugin/pom.xml?view=diff&rev=529578&r1=529577&r2=529578
==============================================================================
--- webservices/axis2/branches/java/1_2/modules/tool/axis2-eclipse-codegen-plugin/pom.xml (original)
+++ webservices/axis2/branches/java/1_2/modules/tool/axis2-eclipse-codegen-plugin/pom.xml Tue Apr 17 05:31:16 2007
@@ -137,8 +137,8 @@
 			</exclusions>
 		</dependency>
 		<dependency>
-			<groupId>org.apache.geronimo.specs</groupId>
-			<artifactId>geronimo-activation_1.1_spec</artifactId>
+			<groupId>javax.mail</groupId>
+			<artifactId>mail</artifactId>
 		</dependency>
 		<dependency>
 			<groupId>annogen</groupId>

Modified: webservices/axis2/branches/java/1_2/modules/tool/axis2-idea-plugin/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/tool/axis2-idea-plugin/pom.xml?view=diff&rev=529578&r1=529577&r2=529578
==============================================================================
--- webservices/axis2/branches/java/1_2/modules/tool/axis2-idea-plugin/pom.xml (original)
+++ webservices/axis2/branches/java/1_2/modules/tool/axis2-idea-plugin/pom.xml Tue Apr 17 05:31:16 2007
@@ -92,12 +92,8 @@
 			<artifactId>stax-api</artifactId>
 		</dependency>
 		<dependency>
-			<groupId>org.apache.geronimo.specs</groupId>
-			<artifactId>geronimo-javamail_1.4_spec</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.geronimo.specs</groupId>
-			<artifactId>geronimo-activation_1.1_spec</artifactId>
+			<groupId>javax.mail</groupId>
+			<artifactId>mail</artifactId>
 		</dependency>
 		<dependency>
 			<groupId>com.intellij</groupId>



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org


Re: svn commit: r529578 - in /webservices/axis2/branches/java/1_2/modules: java2wsdl/pom.xml parent/pom.xml saaj-api/pom.xml tool/axis2-ant-plugin/pom.xml tool/axis2-eclipse-codegen-plugin/pom.xml tool/axis2-idea-plugin/pom.xml

Posted by Saminda Abeyruwan <sa...@gmail.com>.
Hi David,

Geronimo mail/activation jars have been quite troublesome for till now, this
has been evident when we use Mail Transport even. For Ex: for POP mails it
used javax.mail.URLName, which some of the method still throws "methods not
yet implemented" exception in Geronimo.

Axiom uses Suns mail and activation. Thus, with transient dependencies we
could simply uses it.

Thank you

Saminda

On 4/17/07, David Illsley <da...@gmail.com> wrote:
>
> Um, I don't object to this but I'd like to know why?
>
> I seem to remember the source of these jars being flipped
> semi-regularly so I think it'd be a good plan to include a reason when
> doing this... and potentially bring it up on the list first (apologies
> if I've missed that).
>
> David
>
> On 17/04/07, saminda@apache.org <sa...@apache.org> wrote:
> > Author: saminda
> > Date: Tue Apr 17 05:31:16 2007
> > New Revision: 529578
> >
> > URL: http://svn.apache.org/viewvc?view=rev&rev=529578
> > Log:
> > Update the pom.xml to get mail and activation jars from Sun.
> >
> > Modified:
> >     webservices/axis2/branches/java/1_2/modules/java2wsdl/pom.xml
> >     webservices/axis2/branches/java/1_2/modules/parent/pom.xml
> >     webservices/axis2/branches/java/1_2/modules/saaj-api/pom.xml
> >
> webservices/axis2/branches/java/1_2/modules/tool/axis2-ant-plugin/pom.xml
> >
> webservices/axis2/branches/java/1_2/modules/tool/axis2-eclipse-codegen-plugin/pom.xml
> >
> webservices/axis2/branches/java/1_2/modules/tool/axis2-idea-plugin/pom.xml
> >
> > Modified: webservices/axis2/branches/java/1_2/modules/java2wsdl/pom.xml
> > URL:
> http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/java2wsdl/pom.xml?view=diff&rev=529578&r1=529577&r2=529578
> >
> ==============================================================================
> > --- webservices/axis2/branches/java/1_2/modules/java2wsdl/pom.xml
> (original)
> > +++ webservices/axis2/branches/java/1_2/modules/java2wsdl/pom.xml Tue
> Apr 17 05:31:16 2007
> > @@ -58,8 +58,8 @@
> >                         <artifactId>XmlSchema</artifactId>
> >                 </dependency>
> >                 <dependency>
> > -                       <groupId>org.apache.geronimo.specs</groupId>
> > -
> <artifactId>geronimo-javamail_1.4_spec</artifactId>
> > +                       <groupId>javax.mail</groupId>
> > +                       <artifactId>mail</artifactId>
> >                 </dependency>
> >                 <dependency>
> >                         <groupId>jaxen</groupId>
> >
> > Modified: webservices/axis2/branches/java/1_2/modules/parent/pom.xml
> > URL:
> http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/parent/pom.xml?view=diff&rev=529578&r1=529577&r2=529578
> >
> ==============================================================================
> > --- webservices/axis2/branches/java/1_2/modules/parent/pom.xml
> (original)
> > +++ webservices/axis2/branches/java/1_2/modules/parent/pom.xml Tue Apr
> 17 05:31:16 2007
> > @@ -87,8 +87,7 @@
> >                 <commons.io.version>1.2</commons.io.version>
> >                 <commons.logging.version>1.1</commons.logging.version>
> >                 <eclipse.version>3.2.0</eclipse.version>
> > -               <geronimo.spec.activation.version>1.0-M1
> </geronimo.spec.activation.version>
> > -               <geronimo.spec.javamail.version>1.0-M1
> </geronimo.spec.javamail.version>
> > +        <javamail.version>1.4</javamail.version>
> >                 <geronimo.spec.jms.version>1.1
> </geronimo.spec.jms.version>
> >                 <groovy.all.version>1.0-jsr-06</groovy.all.version>
> >                 <intellij.version>5.0</intellij.version>
> > @@ -386,9 +385,9 @@
> >                         <name>eclipse maven repository</name>
> >                         <url>http://repo1.maven.org/eclipse</url>
> >                 </repository>
> > -        <repository>
> > -            <id>apache-ibiblio-rsync</id>
> > -            <url>
> http://people.apache.org/repo/m2-ibiblio-rsync-repository/</url>
> > +        <repository>
> > +            <id>apache-ibiblio-rsync</id>
> > +            <url>
> http://people.apache.org/repo/m2-ibiblio-rsync-repository/</url>
> >          </repository>
> >                 <repository>
> >                         <id>jibx</id>
> > @@ -574,15 +573,10 @@
> >                                 <version>${stax.api.version}</version>
> >                         </dependency>
> >                         <dependency>
> > -                               <groupId>org.apache.geronimo.specs
> </groupId>
> > -
> <artifactId>geronimo-activation_1.1_spec</artifactId>
> > -                               <version>${
> geronimo.spec.activation.version}</version>
> > -                       </dependency>
> > -                       <dependency>
> > -                               <groupId>org.apache.geronimo.specs
> </groupId>
> > -
> <artifactId>geronimo-javamail_1.4_spec</artifactId>
> > -                               <version>${
> geronimo.spec.javamail.version}</version>
> > -                       </dependency>
> > +                <groupId>javax.mail</groupId>
> > +                <artifactId>mail</artifactId>
> > +                <version>${javamail.version}</version>
> > +            </dependency>
> >                         <dependency>
> >                                 <groupId>org.apache.geronimo.specs
> </groupId>
> >
> <artifactId>geronimo-jms_1.1_spec</artifactId>
> >
> > Modified: webservices/axis2/branches/java/1_2/modules/saaj-api/pom.xml
> > URL:
> http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/saaj-api/pom.xml?view=diff&rev=529578&r1=529577&r2=529578
> >
> ==============================================================================
> > --- webservices/axis2/branches/java/1_2/modules/saaj-api/pom.xml
> (original)
> > +++ webservices/axis2/branches/java/1_2/modules/saaj-api/pom.xml Tue Apr
> 17 05:31:16 2007
> > @@ -32,12 +32,8 @@
> >                         <artifactId>xml-apis</artifactId>
> >                 </dependency>
> >                 <dependency>
> > -                       <groupId>org.apache.geronimo.specs</groupId>
> > -
> <artifactId>geronimo-javamail_1.4_spec</artifactId>
> > -               </dependency>
> > -               <dependency>
> > -                       <groupId>org.apache.geronimo.specs</groupId>
> > -
> <artifactId>geronimo-activation_1.1_spec</artifactId>
> > +                       <groupId>javax.mail</groupId>
> > +                       <artifactId>mail</artifactId>
> >                 </dependency>
> >         </dependencies>
> >         <build>
> >
> > Modified:
> webservices/axis2/branches/java/1_2/modules/tool/axis2-ant-plugin/pom.xml
> > URL:
> http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/tool/axis2-ant-plugin/pom.xml?view=diff&rev=529578&r1=529577&r2=529578
> >
> ==============================================================================
> > ---
> webservices/axis2/branches/java/1_2/modules/tool/axis2-ant-plugin/pom.xml
> (original)
> > +++
> webservices/axis2/branches/java/1_2/modules/tool/axis2-ant-plugin/pom.xml
> Tue Apr 17 05:31:16 2007
> > @@ -96,12 +96,8 @@
> >                         <artifactId>stax-api</artifactId>
> >                 </dependency>
> >                 <dependency>
> > -                       <groupId>org.apache.geronimo.specs</groupId>
> > -
> <artifactId>geronimo-javamail_1.4_spec</artifactId>
> > -               </dependency>
> > -               <dependency>
> > -                       <groupId>org.apache.geronimo.specs</groupId>
> > -
> <artifactId>geronimo-activation_1.1_spec</artifactId>
> > +                       <groupId>javax.mail</groupId>
> > +                       <artifactId>mail</artifactId>
> >                 </dependency>
> >                 <dependency>
> >                         <groupId>org.apache.ant</groupId>
> >
> > Modified:
> webservices/axis2/branches/java/1_2/modules/tool/axis2-eclipse-codegen-plugin/pom.xml
> > URL:
> http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/tool/axis2-eclipse-codegen-plugin/pom.xml?view=diff&rev=529578&r1=529577&r2=529578
> >
> ==============================================================================
> > ---
> webservices/axis2/branches/java/1_2/modules/tool/axis2-eclipse-codegen-plugin/pom.xml
> (original)
> > +++
> webservices/axis2/branches/java/1_2/modules/tool/axis2-eclipse-codegen-plugin/pom.xml
> Tue Apr 17 05:31:16 2007
> > @@ -137,8 +137,8 @@
> >                         </exclusions>
> >                 </dependency>
> >                 <dependency>
> > -                       <groupId>org.apache.geronimo.specs</groupId>
> > -
> <artifactId>geronimo-activation_1.1_spec</artifactId>
> > +                       <groupId>javax.mail</groupId>
> > +                       <artifactId>mail</artifactId>
> >                 </dependency>
> >                 <dependency>
> >                         <groupId>annogen</groupId>
> >
> > Modified:
> webservices/axis2/branches/java/1_2/modules/tool/axis2-idea-plugin/pom.xml
> > URL:
> http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/tool/axis2-idea-plugin/pom.xml?view=diff&rev=529578&r1=529577&r2=529578
> >
> ==============================================================================
> > ---
> webservices/axis2/branches/java/1_2/modules/tool/axis2-idea-plugin/pom.xml
> (original)
> > +++
> webservices/axis2/branches/java/1_2/modules/tool/axis2-idea-plugin/pom.xml
> Tue Apr 17 05:31:16 2007
> > @@ -92,12 +92,8 @@
> >                         <artifactId>stax-api</artifactId>
> >                 </dependency>
> >                 <dependency>
> > -                       <groupId>org.apache.geronimo.specs</groupId>
> > -
> <artifactId>geronimo-javamail_1.4_spec</artifactId>
> > -               </dependency>
> > -               <dependency>
> > -                       <groupId>org.apache.geronimo.specs</groupId>
> > -
> <artifactId>geronimo-activation_1.1_spec</artifactId>
> > +                       <groupId>javax.mail</groupId>
> > +                       <artifactId>mail</artifactId>
> >                 </dependency>
> >                 <dependency>
> >                         <groupId>com.intellij</groupId>
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
> > For additional commands, e-mail: axis-cvs-help@ws.apache.org
> >
> >
>
>
> --
> David Illsley - IBM Web Services Development
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-dev-help@ws.apache.org
>
>


-- 
Saminda Abeyruwan

Software Engineer
WSO2 Inc. - www.wso2.org

Re: svn commit: r529578 - in /webservices/axis2/branches/java/1_2/modules: java2wsdl/pom.xml parent/pom.xml saaj-api/pom.xml tool/axis2-ant-plugin/pom.xml tool/axis2-eclipse-codegen-plugin/pom.xml tool/axis2-idea-plugin/pom.xml

Posted by David Illsley <da...@gmail.com>.
Um, I don't object to this but I'd like to know why?

I seem to remember the source of these jars being flipped
semi-regularly so I think it'd be a good plan to include a reason when
doing this... and potentially bring it up on the list first (apologies
if I've missed that).

David

On 17/04/07, saminda@apache.org <sa...@apache.org> wrote:
> Author: saminda
> Date: Tue Apr 17 05:31:16 2007
> New Revision: 529578
>
> URL: http://svn.apache.org/viewvc?view=rev&rev=529578
> Log:
> Update the pom.xml to get mail and activation jars from Sun.
>
> Modified:
>     webservices/axis2/branches/java/1_2/modules/java2wsdl/pom.xml
>     webservices/axis2/branches/java/1_2/modules/parent/pom.xml
>     webservices/axis2/branches/java/1_2/modules/saaj-api/pom.xml
>     webservices/axis2/branches/java/1_2/modules/tool/axis2-ant-plugin/pom.xml
>     webservices/axis2/branches/java/1_2/modules/tool/axis2-eclipse-codegen-plugin/pom.xml
>     webservices/axis2/branches/java/1_2/modules/tool/axis2-idea-plugin/pom.xml
>
> Modified: webservices/axis2/branches/java/1_2/modules/java2wsdl/pom.xml
> URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/java2wsdl/pom.xml?view=diff&rev=529578&r1=529577&r2=529578
> ==============================================================================
> --- webservices/axis2/branches/java/1_2/modules/java2wsdl/pom.xml (original)
> +++ webservices/axis2/branches/java/1_2/modules/java2wsdl/pom.xml Tue Apr 17 05:31:16 2007
> @@ -58,8 +58,8 @@
>                         <artifactId>XmlSchema</artifactId>
>                 </dependency>
>                 <dependency>
> -                       <groupId>org.apache.geronimo.specs</groupId>
> -                       <artifactId>geronimo-javamail_1.4_spec</artifactId>
> +                       <groupId>javax.mail</groupId>
> +                       <artifactId>mail</artifactId>
>                 </dependency>
>                 <dependency>
>                         <groupId>jaxen</groupId>
>
> Modified: webservices/axis2/branches/java/1_2/modules/parent/pom.xml
> URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/parent/pom.xml?view=diff&rev=529578&r1=529577&r2=529578
> ==============================================================================
> --- webservices/axis2/branches/java/1_2/modules/parent/pom.xml (original)
> +++ webservices/axis2/branches/java/1_2/modules/parent/pom.xml Tue Apr 17 05:31:16 2007
> @@ -87,8 +87,7 @@
>                 <commons.io.version>1.2</commons.io.version>
>                 <commons.logging.version>1.1</commons.logging.version>
>                 <eclipse.version>3.2.0</eclipse.version>
> -               <geronimo.spec.activation.version>1.0-M1</geronimo.spec.activation.version>
> -               <geronimo.spec.javamail.version>1.0-M1</geronimo.spec.javamail.version>
> +        <javamail.version>1.4</javamail.version>
>                 <geronimo.spec.jms.version>1.1</geronimo.spec.jms.version>
>                 <groovy.all.version>1.0-jsr-06</groovy.all.version>
>                 <intellij.version>5.0</intellij.version>
> @@ -386,9 +385,9 @@
>                         <name>eclipse maven repository</name>
>                         <url>http://repo1.maven.org/eclipse</url>
>                 </repository>
> -        <repository>
> -            <id>apache-ibiblio-rsync</id>
> -            <url>http://people.apache.org/repo/m2-ibiblio-rsync-repository/</url>
> +        <repository>
> +            <id>apache-ibiblio-rsync</id>
> +            <url>http://people.apache.org/repo/m2-ibiblio-rsync-repository/</url>
>          </repository>
>                 <repository>
>                         <id>jibx</id>
> @@ -574,15 +573,10 @@
>                                 <version>${stax.api.version}</version>
>                         </dependency>
>                         <dependency>
> -                               <groupId>org.apache.geronimo.specs</groupId>
> -                               <artifactId>geronimo-activation_1.1_spec</artifactId>
> -                               <version>${geronimo.spec.activation.version}</version>
> -                       </dependency>
> -                       <dependency>
> -                               <groupId>org.apache.geronimo.specs</groupId>
> -                               <artifactId>geronimo-javamail_1.4_spec</artifactId>
> -                               <version>${geronimo.spec.javamail.version}</version>
> -                       </dependency>
> +                <groupId>javax.mail</groupId>
> +                <artifactId>mail</artifactId>
> +                <version>${javamail.version}</version>
> +            </dependency>
>                         <dependency>
>                                 <groupId>org.apache.geronimo.specs</groupId>
>                                 <artifactId>geronimo-jms_1.1_spec</artifactId>
>
> Modified: webservices/axis2/branches/java/1_2/modules/saaj-api/pom.xml
> URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/saaj-api/pom.xml?view=diff&rev=529578&r1=529577&r2=529578
> ==============================================================================
> --- webservices/axis2/branches/java/1_2/modules/saaj-api/pom.xml (original)
> +++ webservices/axis2/branches/java/1_2/modules/saaj-api/pom.xml Tue Apr 17 05:31:16 2007
> @@ -32,12 +32,8 @@
>                         <artifactId>xml-apis</artifactId>
>                 </dependency>
>                 <dependency>
> -                       <groupId>org.apache.geronimo.specs</groupId>
> -                       <artifactId>geronimo-javamail_1.4_spec</artifactId>
> -               </dependency>
> -               <dependency>
> -                       <groupId>org.apache.geronimo.specs</groupId>
> -                       <artifactId>geronimo-activation_1.1_spec</artifactId>
> +                       <groupId>javax.mail</groupId>
> +                       <artifactId>mail</artifactId>
>                 </dependency>
>         </dependencies>
>         <build>
>
> Modified: webservices/axis2/branches/java/1_2/modules/tool/axis2-ant-plugin/pom.xml
> URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/tool/axis2-ant-plugin/pom.xml?view=diff&rev=529578&r1=529577&r2=529578
> ==============================================================================
> --- webservices/axis2/branches/java/1_2/modules/tool/axis2-ant-plugin/pom.xml (original)
> +++ webservices/axis2/branches/java/1_2/modules/tool/axis2-ant-plugin/pom.xml Tue Apr 17 05:31:16 2007
> @@ -96,12 +96,8 @@
>                         <artifactId>stax-api</artifactId>
>                 </dependency>
>                 <dependency>
> -                       <groupId>org.apache.geronimo.specs</groupId>
> -                       <artifactId>geronimo-javamail_1.4_spec</artifactId>
> -               </dependency>
> -               <dependency>
> -                       <groupId>org.apache.geronimo.specs</groupId>
> -                       <artifactId>geronimo-activation_1.1_spec</artifactId>
> +                       <groupId>javax.mail</groupId>
> +                       <artifactId>mail</artifactId>
>                 </dependency>
>                 <dependency>
>                         <groupId>org.apache.ant</groupId>
>
> Modified: webservices/axis2/branches/java/1_2/modules/tool/axis2-eclipse-codegen-plugin/pom.xml
> URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/tool/axis2-eclipse-codegen-plugin/pom.xml?view=diff&rev=529578&r1=529577&r2=529578
> ==============================================================================
> --- webservices/axis2/branches/java/1_2/modules/tool/axis2-eclipse-codegen-plugin/pom.xml (original)
> +++ webservices/axis2/branches/java/1_2/modules/tool/axis2-eclipse-codegen-plugin/pom.xml Tue Apr 17 05:31:16 2007
> @@ -137,8 +137,8 @@
>                         </exclusions>
>                 </dependency>
>                 <dependency>
> -                       <groupId>org.apache.geronimo.specs</groupId>
> -                       <artifactId>geronimo-activation_1.1_spec</artifactId>
> +                       <groupId>javax.mail</groupId>
> +                       <artifactId>mail</artifactId>
>                 </dependency>
>                 <dependency>
>                         <groupId>annogen</groupId>
>
> Modified: webservices/axis2/branches/java/1_2/modules/tool/axis2-idea-plugin/pom.xml
> URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/tool/axis2-idea-plugin/pom.xml?view=diff&rev=529578&r1=529577&r2=529578
> ==============================================================================
> --- webservices/axis2/branches/java/1_2/modules/tool/axis2-idea-plugin/pom.xml (original)
> +++ webservices/axis2/branches/java/1_2/modules/tool/axis2-idea-plugin/pom.xml Tue Apr 17 05:31:16 2007
> @@ -92,12 +92,8 @@
>                         <artifactId>stax-api</artifactId>
>                 </dependency>
>                 <dependency>
> -                       <groupId>org.apache.geronimo.specs</groupId>
> -                       <artifactId>geronimo-javamail_1.4_spec</artifactId>
> -               </dependency>
> -               <dependency>
> -                       <groupId>org.apache.geronimo.specs</groupId>
> -                       <artifactId>geronimo-activation_1.1_spec</artifactId>
> +                       <groupId>javax.mail</groupId>
> +                       <artifactId>mail</artifactId>
>                 </dependency>
>                 <dependency>
>                         <groupId>com.intellij</groupId>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-cvs-help@ws.apache.org
>
>


-- 
David Illsley - IBM Web Services Development

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org