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/01/09 16:02:52 UTC

svn commit: r1229184 - in /axis/axis1/java/trunk: ./ axis-jms/ axis-jms/src/ axis-jms/src/main/ axis-jms/src/main/java/ axis-jms/src/main/java/org/ axis-jms/src/main/java/org/apache/ axis-jms/src/main/java/org/apache/axis/ axis-jms/src/main/java/org/ap...

Author: veithen
Date: Mon Jan  9 15:02:51 2012
New Revision: 1229184

URL: http://svn.apache.org/viewvc?rev=1229184&view=rev
Log:
Moved the JMS stuff to its own Maven module.

Added:
    axis/axis1/java/trunk/axis-jms/
    axis/axis1/java/trunk/axis-jms/pom.xml   (with props)
    axis/axis1/java/trunk/axis-jms/src/
    axis/axis1/java/trunk/axis-jms/src/main/
    axis/axis1/java/trunk/axis-jms/src/main/java/
    axis/axis1/java/trunk/axis-jms/src/main/java/org/
    axis/axis1/java/trunk/axis-jms/src/main/java/org/apache/
    axis/axis1/java/trunk/axis-jms/src/main/java/org/apache/axis/
    axis/axis1/java/trunk/axis-jms/src/main/java/org/apache/axis/components/
    axis/axis1/java/trunk/axis-jms/src/main/java/org/apache/axis/components/jms/
      - copied from r1229178, axis/axis1/java/trunk/axis/src/main/java/org/apache/axis/components/jms/
    axis/axis1/java/trunk/axis-jms/src/main/java/org/apache/axis/transport/
    axis/axis1/java/trunk/axis-jms/src/main/java/org/apache/axis/transport/jms/
      - copied from r1229178, axis/axis1/java/trunk/axis/src/main/java/org/apache/axis/transport/jms/
    axis/axis1/java/trunk/axis-jms/src/site/
    axis/axis1/java/trunk/axis-jms/src/site/apt/
    axis/axis1/java/trunk/axis-jms/src/site/apt/index.apt
    axis/axis1/java/trunk/axis-jms/src/site/resources/
    axis/axis1/java/trunk/axis-jms/src/site/resources/AxisJMSSample.pdf
      - copied unchanged from r1229178, axis/axis1/java/trunk/docs/AxisJMSSample.pdf
Removed:
    axis/axis1/java/trunk/axis/src/main/java/org/apache/axis/components/jms/
    axis/axis1/java/trunk/axis/src/main/java/org/apache/axis/transport/jms/
    axis/axis1/java/trunk/docs/AxisJMSSample.pdf
Modified:
    axis/axis1/java/trunk/axis/pom.xml
    axis/axis1/java/trunk/pom.xml
    axis/axis1/java/trunk/src/site/site.xml

Added: axis/axis1/java/trunk/axis-jms/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-jms/pom.xml?rev=1229184&view=auto
==============================================================================
--- axis/axis1/java/trunk/axis-jms/pom.xml (added)
+++ axis/axis1/java/trunk/axis-jms/pom.xml Mon Jan  9 15:02:51 2012
@@ -0,0 +1,74 @@
+<?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-jms</artifactId>
+    <name>JMS support</name>
+    <description>
+        Contains the Axis JMS transport.
+    </description>
+    <dependencies>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>axis</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-jms_1.1_spec</artifactId>
+            <version>1.1.1</version>
+        </dependency>
+    </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <!-- Classes from the progress.message.jclient package are not available in any public repository -->
+                        <exclude>org/apache/axis/components/jms/SonicMQVendorAdapter.java</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    <reporting>
+        <plugins>
+            <plugin>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+                <version>2.4</version>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>index</report>
+                            <report>dependencies</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+        </plugins>
+    </reporting>
+</project>

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

Added: axis/axis1/java/trunk/axis-jms/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-jms/src/site/apt/index.apt?rev=1229184&view=auto
==============================================================================
--- axis/axis1/java/trunk/axis-jms/src/site/apt/index.apt (added)
+++ axis/axis1/java/trunk/axis-jms/src/site/apt/index.apt Mon Jan  9 15:02:51 2012
@@ -0,0 +1,23 @@
+~~ 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.
+
+           -----
+           About
+           -----
+
+  There is a {{{./AxisJMSSample.pdf}PDF}} documentation that describes how to use Axis with JMS.
+  
\ No newline at end of file

Modified: axis/axis1/java/trunk/axis/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis/pom.xml?rev=1229184&r1=1229183&r2=1229184&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis/pom.xml (original)
+++ axis/axis1/java/trunk/axis/pom.xml Mon Jan  9 15:02:51 2012
@@ -77,12 +77,6 @@
             </exclusions>
         </dependency>
         <dependency>
-            <groupId>org.apache.geronimo.specs</groupId>
-            <artifactId>geronimo-jms_1.1_spec</artifactId>
-            <version>1.1.1</version>
-            <optional>true</optional>
-        </dependency>
-        <dependency>
             <groupId>commons-net</groupId>
             <artifactId>commons-net</artifactId>
             <version>1.0.0</version>
@@ -182,8 +176,6 @@
                         <exclude>org/apache/axis/components/image/JimiIO.java</exclude>
                         <!-- Depends on classes from the IBM JDK -->
                         <exclude>org/apache/axis/components/net/IBM*.java</exclude>
-                        <!-- Classes from the progress.message.jclient package are not available in any public repository -->
-                        <exclude>org/apache/axis/components/jms/SonicMQVendorAdapter.java</exclude>
                         <!-- TODO: contains reference to non existing class org.apache.axis.components.bridge.COMBridge -->
                         <exclude>org/apache/axis/providers/ComProvider.java</exclude>
                         <!-- TODO: need to figure out how this is built -->

Modified: axis/axis1/java/trunk/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/pom.xml?rev=1229184&r1=1229183&r2=1229184&view=diff
==============================================================================
--- axis/axis1/java/trunk/pom.xml (original)
+++ axis/axis1/java/trunk/pom.xml Mon Jan  9 15:02:51 2012
@@ -64,6 +64,7 @@
         <module>axis-maven-plugin</module>
         <module>axis-standalone-server</module>
         <module>axis-castor</module>
+        <module>axis-jms</module>
         <module>integration</module>
         <module>axis-war</module>
     </modules>

Modified: axis/axis1/java/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/src/site/site.xml?rev=1229184&r1=1229183&r2=1229184&view=diff
==============================================================================
--- axis/axis1/java/trunk/src/site/site.xml (original)
+++ axis/axis1/java/trunk/src/site/site.xml Mon Jan  9 15:02:51 2012
@@ -62,6 +62,7 @@
             <item name="Ant tasks" href="axis-ant/index.html"/>
             <item name="Maven plugin" href="axis-maven-plugin/index.html"/>
             <item name="Castor support" href="axis-castor/index.html"/>
+            <item name="JMS support" href="axis-jms/index.html"/>
         </menu>
         <menu ref="reports" inherit="bottom"/>
         <menu name="Apache" inherit="bottom">