You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by ve...@apache.org on 2012/10/20 17:39:34 UTC

svn commit: r1400474 - in /axis/axis1/java/trunk: ./ axis-rt-core/ axis-rt-core/src/main/java/org/apache/axis/transport/mail/ axis-rt-transport-mail/ axis-rt-transport-mail/src/ axis-rt-transport-mail/src/main/ axis-rt-transport-mail/src/main/java/ axi...

Author: veithen
Date: Sat Oct 20 15:39:33 2012
New Revision: 1400474

URL: http://svn.apache.org/viewvc?rev=1400474&view=rev
Log:
Moved the mail transport to a separate Maven module.

Added:
    axis/axis1/java/trunk/axis-rt-transport-mail/   (with props)
    axis/axis1/java/trunk/axis-rt-transport-mail/pom.xml   (with props)
    axis/axis1/java/trunk/axis-rt-transport-mail/src/
    axis/axis1/java/trunk/axis-rt-transport-mail/src/main/
    axis/axis1/java/trunk/axis-rt-transport-mail/src/main/java/
    axis/axis1/java/trunk/axis-rt-transport-mail/src/main/java/org/
    axis/axis1/java/trunk/axis-rt-transport-mail/src/main/java/org/apache/
    axis/axis1/java/trunk/axis-rt-transport-mail/src/main/java/org/apache/axis/
    axis/axis1/java/trunk/axis-rt-transport-mail/src/main/java/org/apache/axis/transport/
    axis/axis1/java/trunk/axis-rt-transport-mail/src/main/java/org/apache/axis/transport/mail/
      - copied from r1400471, axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/transport/mail/
Removed:
    axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/transport/mail/
Modified:
    axis/axis1/java/trunk/axis-rt-core/pom.xml
    axis/axis1/java/trunk/axis/pom.xml
    axis/axis1/java/trunk/pom.xml

Modified: axis/axis1/java/trunk/axis-rt-core/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-rt-core/pom.xml?rev=1400474&r1=1400473&r2=1400474&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis-rt-core/pom.xml (original)
+++ axis/axis1/java/trunk/axis-rt-core/pom.xml Sat Oct 20 15:39:33 2012
@@ -48,7 +48,6 @@
         <dependency>
             <groupId>javax.mail</groupId>
             <artifactId>mail</artifactId>
-            <version>1.4.1</version>
         </dependency>
         <dependency>
             <groupId>wsdl4j</groupId>
@@ -84,12 +83,6 @@
             </exclusions>
         </dependency>
         <dependency>
-            <groupId>commons-net</groupId>
-            <artifactId>commons-net</artifactId>
-            <version>1.0.0</version>
-            <optional>true</optional>
-        </dependency>
-        <dependency>
             <groupId>jetty</groupId>
             <artifactId>jetty</artifactId>
             <version>5.1.10</version>

Propchange: axis/axis1/java/trunk/axis-rt-transport-mail/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sat Oct 20 15:39:33 2012
@@ -0,0 +1,4 @@
+.classpath
+.project
+target
+.settings

Added: axis/axis1/java/trunk/axis-rt-transport-mail/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-rt-transport-mail/pom.xml?rev=1400474&view=auto
==============================================================================
--- axis/axis1/java/trunk/axis-rt-transport-mail/pom.xml (added)
+++ axis/axis1/java/trunk/axis-rt-transport-mail/pom.xml Sat Oct 20 15:39:33 2012
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements. See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership. The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License. You may obtain a copy of the License at
+  ~
+  ~ http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied. See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.axis</groupId>
+        <artifactId>axis-project</artifactId>
+        <version>1.4.1-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <artifactId>axis-rt-transport-mail</artifactId>
+    <name>Mail Transport</name>
+    <dependencies>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>axis-rt-core</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>javax.mail</groupId>
+            <artifactId>mail</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-net</groupId>
+            <artifactId>commons-net</artifactId>
+            <version>1.0.0</version>
+        </dependency>
+    </dependencies>
+</project>

Propchange: axis/axis1/java/trunk/axis-rt-transport-mail/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: axis/axis1/java/trunk/axis/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis/pom.xml?rev=1400474&r1=1400473&r2=1400474&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis/pom.xml (original)
+++ axis/axis1/java/trunk/axis/pom.xml Sat Oct 20 15:39:33 2012
@@ -53,6 +53,11 @@
         </dependency>
         <dependency>
             <groupId>${project.groupId}</groupId>
+            <artifactId>axis-rt-transport-mail</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
             <artifactId>axis-codegen</artifactId>
             <version>${project.version}</version>
         </dependency>
@@ -79,6 +84,7 @@
                                     <include>${project.groupId}:axis-rt-core</include>
                                     <include>${project.groupId}:axis-rt-databinding-castor</include>
                                     <include>${project.groupId}:axis-rt-provider-bsf</include>
+                                    <include>${project.groupId}:axis-rt-transport-mail</include>
                                     <include>${project.groupId}:axis-codegen</include>
                                     <include>${project.groupId}:axis-tools</include>
                                 </includes>

Modified: axis/axis1/java/trunk/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/pom.xml?rev=1400474&r1=1400473&r2=1400474&view=diff
==============================================================================
--- axis/axis1/java/trunk/pom.xml (original)
+++ axis/axis1/java/trunk/pom.xml Sat Oct 20 15:39:33 2012
@@ -66,6 +66,7 @@
         <module>axis-rt-provider-bsf</module>
         <module>axis-rt-transport-http-javanet</module>
         <module>axis-rt-transport-jms</module>
+        <module>axis-rt-transport-mail</module>
         <module>axis-saaj</module>
         <module>axis-standalone-server</module>
         <module>axis-testutils</module>
@@ -86,6 +87,11 @@
                 <version>1.1</version>
             </dependency>
             <dependency>
+                <groupId>javax.mail</groupId>
+                <artifactId>mail</artifactId>
+                <version>1.4.1</version>
+            </dependency>
+            <dependency>
                 <groupId>junit</groupId>
                 <artifactId>junit</artifactId>
                 <version>3.8.2</version>