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/08 21:04:46 UTC

svn commit: r1228937 - in /axis/axis1/java/trunk: ./ axis-castor/ axis-castor/src/ axis-castor/src/main/ axis-castor/src/main/java/ axis-castor/src/main/java/org/ axis-castor/src/main/java/org/apache/ axis-castor/src/main/java/org/apache/axis/ axis-cas...

Author: veithen
Date: Sun Jan  8 20:04:45 2012
New Revision: 1228937

URL: http://svn.apache.org/viewvc?rev=1228937&view=rev
Log:
Moved the Castor support to a different Maven module.

Added:
    axis/axis1/java/trunk/axis-castor/   (with props)
    axis/axis1/java/trunk/axis-castor/pom.xml   (with props)
    axis/axis1/java/trunk/axis-castor/src/
    axis/axis1/java/trunk/axis-castor/src/main/
    axis/axis1/java/trunk/axis-castor/src/main/java/
    axis/axis1/java/trunk/axis-castor/src/main/java/org/
    axis/axis1/java/trunk/axis-castor/src/main/java/org/apache/
    axis/axis1/java/trunk/axis-castor/src/main/java/org/apache/axis/
    axis/axis1/java/trunk/axis-castor/src/main/java/org/apache/axis/encoding/
    axis/axis1/java/trunk/axis-castor/src/main/java/org/apache/axis/encoding/ser/
    axis/axis1/java/trunk/axis-castor/src/main/java/org/apache/axis/encoding/ser/castor/
      - copied from r1227001, axis/axis1/java/trunk/axis/src/main/java/org/apache/axis/encoding/ser/castor/
    axis/axis1/java/trunk/axis-castor/src/site/
    axis/axis1/java/trunk/axis-castor/src/site/apt/
    axis/axis1/java/trunk/axis-castor/src/site/apt/index.apt
Removed:
    axis/axis1/java/trunk/axis/src/main/java/org/apache/axis/encoding/ser/castor/
Modified:
    axis/axis1/java/trunk/axis/pom.xml
    axis/axis1/java/trunk/pom.xml
    axis/axis1/java/trunk/src/site/site.xml

Propchange: axis/axis1/java/trunk/axis-castor/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Jan  8 20:04:45 2012
@@ -0,0 +1,4 @@
+.classpath
+.project
+target
+.settings

Added: axis/axis1/java/trunk/axis-castor/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-castor/pom.xml?rev=1228937&view=auto
==============================================================================
--- axis/axis1/java/trunk/axis-castor/pom.xml (added)
+++ axis/axis1/java/trunk/axis-castor/pom.xml Sun Jan  8 20:04:45 2012
@@ -0,0 +1,61 @@
+<?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-castor</artifactId>
+    <name>Castor support</name>
+    <description>
+        Contains serializers and deserializers for Castor.
+    </description>
+    <dependencies>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>axis</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>castor</groupId>
+            <artifactId>castor</artifactId>
+            <version>0.9.4.2</version>
+        </dependency>
+    </dependencies>
+    <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-castor/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: axis/axis1/java/trunk/axis-castor/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-castor/src/site/apt/index.apt?rev=1228937&view=auto
==============================================================================
--- axis/axis1/java/trunk/axis-castor/src/site/apt/index.apt (added)
+++ axis/axis1/java/trunk/axis-castor/src/site/apt/index.apt Sun Jan  8 20:04:45 2012
@@ -0,0 +1,25 @@
+~~ 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
+           -----
+
+  For documentation about the Castor support in Axis please have a look at the
+  {{{http://www.ibm.com/developerworks/webservices/library/ws-castor/}Create web services
+  using Apache Axis and Castor}} article available from developerWorks.
+  
\ 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=1228937&r1=1228936&r2=1228937&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis/pom.xml (original)
+++ axis/axis1/java/trunk/axis/pom.xml Sun Jan  8 20:04:45 2012
@@ -89,12 +89,6 @@
             <optional>true</optional>
         </dependency>
         <dependency>
-            <groupId>castor</groupId>
-            <artifactId>castor</artifactId>
-            <version>0.9.4.2</version>
-            <optional>true</optional>
-        </dependency>
-        <dependency>
             <groupId>jetty</groupId>
             <artifactId>jetty</artifactId>
             <version>5.1.10</version>

Modified: axis/axis1/java/trunk/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/pom.xml?rev=1228937&r1=1228936&r2=1228937&view=diff
==============================================================================
--- axis/axis1/java/trunk/pom.xml (original)
+++ axis/axis1/java/trunk/pom.xml Sun Jan  8 20:04:45 2012
@@ -37,6 +37,7 @@
         <module>axis-ant</module>
         <module>axis-maven-plugin</module>
         <module>axis-standalone-server</module>
+        <module>axis-castor</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=1228937&r1=1228936&r2=1228937&view=diff
==============================================================================
--- axis/axis1/java/trunk/src/site/site.xml (original)
+++ axis/axis1/java/trunk/src/site/site.xml Sun Jan  8 20:04:45 2012
@@ -61,6 +61,7 @@
         <menu name="More...">
             <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"/>
         </menu>
         <menu ref="reports" inherit="bottom"/>
         <menu name="Apache" inherit="bottom">