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/03/22 22:16:05 UTC

svn commit: r1304069 - in /axis/axis1/java/trunk: ./ axis-ant/ axis-ant/src/site/ axis-castor/ axis-castor/src/site/ axis-jaxrpc/ axis-jms/ axis-jms/src/site/ axis-rt-transports-http-javanet/ axis-rt-transports-http-javanet/src/site/ axis-saaj/ axis-st...

Author: veithen
Date: Thu Mar 22 21:16:04 2012
New Revision: 1304069

URL: http://svn.apache.org/viewvc?rev=1304069&view=rev
Log:
Maven site improvements.

Added:
    axis/axis1/java/trunk/axis-castor/src/site/site.xml   (with props)
    axis/axis1/java/trunk/axis-jms/src/site/site.xml   (with props)
    axis/axis1/java/trunk/axis-rt-transports-http-javanet/src/site/site.xml   (with props)
    axis/axis1/java/trunk/axis-standalone-server/src/site/
    axis/axis1/java/trunk/axis-standalone-server/src/site/site.xml   (with props)
    axis/axis1/java/trunk/axis/src/site/
    axis/axis1/java/trunk/axis/src/site/site.xml   (with props)
    axis/axis1/java/trunk/maven/maven-axis-server-plugin/src/site/
    axis/axis1/java/trunk/maven/maven-axis-server-plugin/src/site/site.xml   (with props)
    axis/axis1/java/trunk/maven/maven-java2wsdl-plugin/src/site/
    axis/axis1/java/trunk/maven/maven-java2wsdl-plugin/src/site/site.xml   (with props)
Modified:
    axis/axis1/java/trunk/axis-ant/pom.xml
    axis/axis1/java/trunk/axis-ant/src/site/site.xml
    axis/axis1/java/trunk/axis-castor/pom.xml
    axis/axis1/java/trunk/axis-jaxrpc/pom.xml
    axis/axis1/java/trunk/axis-jms/pom.xml
    axis/axis1/java/trunk/axis-rt-transports-http-javanet/pom.xml
    axis/axis1/java/trunk/axis-saaj/pom.xml
    axis/axis1/java/trunk/axis-standalone-server/pom.xml
    axis/axis1/java/trunk/axis-war/pom.xml
    axis/axis1/java/trunk/axis/pom.xml
    axis/axis1/java/trunk/distribution/pom.xml
    axis/axis1/java/trunk/integration/pom.xml
    axis/axis1/java/trunk/maven/maven-axis-server-plugin/pom.xml
    axis/axis1/java/trunk/maven/maven-java2wsdl-plugin/pom.xml
    axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/pom.xml
    axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/src/site/site.xml
    axis/axis1/java/trunk/maven/nsmap/pom.xml
    axis/axis1/java/trunk/maven/pom.xml
    axis/axis1/java/trunk/maven/src/site/site.xml
    axis/axis1/java/trunk/pom.xml
    axis/axis1/java/trunk/samples/pom.xml
    axis/axis1/java/trunk/src/site/site.xml

Modified: axis/axis1/java/trunk/axis-ant/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-ant/pom.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis-ant/pom.xml (original)
+++ axis/axis1/java/trunk/axis-ant/pom.xml Thu Mar 22 21:16:04 2012
@@ -26,7 +26,14 @@
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>axis-ant</artifactId>
-    <name>Ant tasks</name>
+    <name>Axis :: Ant tasks</name>
+    <url>${baseUrl}/ant</url>
+    <distributionManagement>
+        <site>
+            <id>axis</id>
+            <url>${baseSiteUrl}/ant</url>
+        </site>
+    </distributionManagement>
     <dependencies>
         <dependency>
             <groupId>${project.groupId}</groupId>

Modified: axis/axis1/java/trunk/axis-ant/src/site/site.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-ant/src/site/site.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis-ant/src/site/site.xml (original)
+++ axis/axis1/java/trunk/axis-ant/src/site/site.xml Thu Mar 22 21:16:04 2012
@@ -17,12 +17,16 @@
   ~ specific language governing permissions and limitations
   ~ under the License.
   -->
-<project name="Apache Axis">
+<project name="Ant tasks">
     <body>
+        <menu name="Overview">
+            <item name="Introduction" href="index.html"/>
+            <item name="Dependencies" href="dependencies.html"/>
+        </menu>
         <menu name="Tasks">
-            <item name="Axis-admin" href="axis-admin.html"/>
-            <item name="Axis-java2wsdl" href="axis-java2wsdl.html"/>
-            <item name="Axis-wsdl2java" href="axis-wsdl2java.html"/>
+            <item name="axis-admin" href="axis-admin.html"/>
+            <item name="axis-java2wsdl" href="axis-java2wsdl.html"/>
+            <item name="axis-wsdl2java" href="axis-wsdl2java.html"/>
         </menu>
     </body>
 </project>

Modified: axis/axis1/java/trunk/axis-castor/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-castor/pom.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis-castor/pom.xml (original)
+++ axis/axis1/java/trunk/axis-castor/pom.xml Thu Mar 22 21:16:04 2012
@@ -30,6 +30,13 @@
     <description>
         Contains serializers and deserializers for Castor.
     </description>
+    <url>${baseUrl}/castor</url>
+    <distributionManagement>
+        <site>
+            <id>axis</id>
+            <url>${baseSiteUrl}/castor</url>
+        </site>
+    </distributionManagement>
     <dependencies>
         <dependency>
             <groupId>${project.groupId}</groupId>

Added: axis/axis1/java/trunk/axis-castor/src/site/site.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-castor/src/site/site.xml?rev=1304069&view=auto
==============================================================================
--- axis/axis1/java/trunk/axis-castor/src/site/site.xml (added)
+++ axis/axis1/java/trunk/axis-castor/src/site/site.xml Thu Mar 22 21:16:04 2012
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  ~ 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 name="Castor support">
+    <body>
+        <menu name="Overview">
+            <item name="Introduction" href="index.html"/>
+            <item name="Dependencies" href="dependencies.html"/>
+        </menu>
+    </body>
+</project>

Propchange: axis/axis1/java/trunk/axis-castor/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: axis/axis1/java/trunk/axis-jaxrpc/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-jaxrpc/pom.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis-jaxrpc/pom.xml (original)
+++ axis/axis1/java/trunk/axis-jaxrpc/pom.xml Thu Mar 22 21:16:04 2012
@@ -58,6 +58,13 @@
                     </archive>
                 </configuration>
             </plugin>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                    <skipDeploy>true</skipDeploy>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 </project>

Modified: axis/axis1/java/trunk/axis-jms/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-jms/pom.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis-jms/pom.xml (original)
+++ axis/axis1/java/trunk/axis-jms/pom.xml Thu Mar 22 21:16:04 2012
@@ -30,6 +30,13 @@
     <description>
         Contains the Axis JMS transport.
     </description>
+    <url>${baseUrl}/transports/jms</url>
+    <distributionManagement>
+        <site>
+            <id>axis</id>
+            <url>${baseSiteUrl}/transports/jms</url>
+        </site>
+    </distributionManagement>
     <dependencies>
         <dependency>
             <groupId>${project.groupId}</groupId>

Added: axis/axis1/java/trunk/axis-jms/src/site/site.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-jms/src/site/site.xml?rev=1304069&view=auto
==============================================================================
--- axis/axis1/java/trunk/axis-jms/src/site/site.xml (added)
+++ axis/axis1/java/trunk/axis-jms/src/site/site.xml Thu Mar 22 21:16:04 2012
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  ~ 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 name="JMS transport">
+    <body>
+        <menu name="Overview">
+            <item name="Introduction" href="index.html"/>
+            <item name="Dependencies" href="dependencies.html"/>
+        </menu>
+    </body>
+</project>

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

Modified: axis/axis1/java/trunk/axis-rt-transports-http-javanet/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-rt-transports-http-javanet/pom.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis-rt-transports-http-javanet/pom.xml (original)
+++ axis/axis1/java/trunk/axis-rt-transports-http-javanet/pom.xml Thu Mar 22 21:16:04 2012
@@ -30,6 +30,13 @@
     <description>
     	An alternative HTTP transport that uses the java.net.HttpURLConnection API. This transport only works with Java 1.5.
     </description>
+    <url>${baseUrl}/transports/http-javanet</url>
+    <distributionManagement>
+        <site>
+            <id>axis</id>
+            <url>${baseSiteUrl}/transports/http-javanet</url>
+        </site>
+    </distributionManagement>
     <dependencies>
         <dependency>
             <groupId>${project.groupId}</groupId>

Added: axis/axis1/java/trunk/axis-rt-transports-http-javanet/src/site/site.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-rt-transports-http-javanet/src/site/site.xml?rev=1304069&view=auto
==============================================================================
--- axis/axis1/java/trunk/axis-rt-transports-http-javanet/src/site/site.xml (added)
+++ axis/axis1/java/trunk/axis-rt-transports-http-javanet/src/site/site.xml Thu Mar 22 21:16:04 2012
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  ~ 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 name="java.net HTTP transport">
+    <body>
+        <menu name="Overview">
+            <item name="Introduction" href="index.html"/>
+            <item name="Dependencies" href="dependencies.html"/>
+        </menu>
+    </body>
+</project>

Propchange: axis/axis1/java/trunk/axis-rt-transports-http-javanet/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: axis/axis1/java/trunk/axis-saaj/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-saaj/pom.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis-saaj/pom.xml (original)
+++ axis/axis1/java/trunk/axis-saaj/pom.xml Thu Mar 22 21:16:04 2012
@@ -53,6 +53,13 @@
                     </archive>
                 </configuration>
             </plugin>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                    <skipDeploy>true</skipDeploy>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 </project>

Modified: axis/axis1/java/trunk/axis-standalone-server/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-standalone-server/pom.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis-standalone-server/pom.xml (original)
+++ axis/axis1/java/trunk/axis-standalone-server/pom.xml Thu Mar 22 21:16:04 2012
@@ -26,10 +26,17 @@
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>axis-standalone-server</artifactId>
-    <name>Axis :: Simple server</name>
+    <name>Axis :: Stand-alone server</name>
     <description>
         A Jetty based stand-alone Axis server that replaces the former SimpleAxisServer.
     </description>
+    <url>${baseUrl}/standalone-server</url>
+    <distributionManagement>
+        <site>
+            <id>axis</id>
+            <url>${baseSiteUrl}/standalone-server</url>
+        </site>
+    </distributionManagement>
     <dependencies>
         <dependency>
             <groupId>${project.groupId}</groupId>
@@ -48,4 +55,20 @@
             <version>6.1.26</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>

Added: axis/axis1/java/trunk/axis-standalone-server/src/site/site.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-standalone-server/src/site/site.xml?rev=1304069&view=auto
==============================================================================
--- axis/axis1/java/trunk/axis-standalone-server/src/site/site.xml (added)
+++ axis/axis1/java/trunk/axis-standalone-server/src/site/site.xml Thu Mar 22 21:16:04 2012
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  ~ 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 name="Stand-alone server">
+    <body>
+        <menu name="Overview">
+            <item name="Introduction" href="index.html"/>
+            <item name="Dependencies" href="dependencies.html"/>
+        </menu>
+    </body>
+</project>

Propchange: axis/axis1/java/trunk/axis-standalone-server/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: axis/axis1/java/trunk/axis-war/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-war/pom.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis-war/pom.xml (original)
+++ axis/axis1/java/trunk/axis-war/pom.xml Thu Mar 22 21:16:04 2012
@@ -146,6 +146,13 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                    <skipDeploy>true</skipDeploy>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 </project>

Modified: axis/axis1/java/trunk/axis/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis/pom.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis/pom.xml (original)
+++ axis/axis1/java/trunk/axis/pom.xml Thu Mar 22 21:16:04 2012
@@ -27,6 +27,13 @@
     </parent>
     <artifactId>axis</artifactId>
     <name>Axis :: Core</name>
+    <url>${baseUrl}/core</url>
+    <distributionManagement>
+        <site>
+            <id>axis</id>
+            <url>${baseSiteUrl}/core</url>
+        </site>
+    </distributionManagement>
     <dependencies>
         <dependency>
             <groupId>${project.groupId}</groupId>
@@ -245,7 +252,6 @@
                 <reportSets>
                     <reportSet>
                         <reports>
-                            <report>index</report>
                             <report>dependencies</report>
                         </reports>
                     </reportSet>

Added: axis/axis1/java/trunk/axis/src/site/site.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis/src/site/site.xml?rev=1304069&view=auto
==============================================================================
--- axis/axis1/java/trunk/axis/src/site/site.xml (added)
+++ axis/axis1/java/trunk/axis/src/site/site.xml Thu Mar 22 21:16:04 2012
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  ~ 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 name="Core">
+    <body>
+        <menu name="Reports">
+            <item name="Dependencies" href="dependencies.html"/>
+            <item name="JDepend" href="jdepend-report.html"/>
+        </menu>
+    </body>
+</project>

Propchange: axis/axis1/java/trunk/axis/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: axis/axis1/java/trunk/distribution/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/distribution/pom.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/distribution/pom.xml (original)
+++ axis/axis1/java/trunk/distribution/pom.xml Thu Mar 22 21:16:04 2012
@@ -137,6 +137,13 @@
                     <skip>true</skip>
                 </configuration>
             </plugin>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                    <skipDeploy>true</skipDeploy>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
     <profiles>

Modified: axis/axis1/java/trunk/integration/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/integration/pom.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/integration/pom.xml (original)
+++ axis/axis1/java/trunk/integration/pom.xml Thu Mar 22 21:16:04 2012
@@ -1285,6 +1285,13 @@
                     <skip>true</skip>
                 </configuration>
             </plugin>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                    <skipDeploy>true</skipDeploy>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 </project>

Modified: axis/axis1/java/trunk/maven/maven-axis-server-plugin/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/maven/maven-axis-server-plugin/pom.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/maven/maven-axis-server-plugin/pom.xml (original)
+++ axis/axis1/java/trunk/maven/maven-axis-server-plugin/pom.xml Thu Mar 22 21:16:04 2012
@@ -27,10 +27,17 @@
     </parent>
     <artifactId>maven-axis-server-plugin</artifactId>
     <packaging>maven-plugin</packaging>
-    <name>Axis server plugin</name>
+    <name>Axis :: Maven :: maven-axis-server-plugin</name>
     <description>
         Axis server Maven plugin.
     </description>
+    <url>${baseUrl}/maven/axis-server</url>
+    <distributionManagement>
+        <site>
+            <id>axis</id>
+            <url>${baseSiteUrl}/maven/axis-server</url>
+        </site>
+    </distributionManagement>
     <dependencies>
         <dependency>
             <groupId>${project.groupId}</groupId>

Added: axis/axis1/java/trunk/maven/maven-axis-server-plugin/src/site/site.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/maven/maven-axis-server-plugin/src/site/site.xml?rev=1304069&view=auto
==============================================================================
--- axis/axis1/java/trunk/maven/maven-axis-server-plugin/src/site/site.xml (added)
+++ axis/axis1/java/trunk/maven/maven-axis-server-plugin/src/site/site.xml Thu Mar 22 21:16:04 2012
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  ~ 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 name="maven-axis-server-plugin">
+    <body>
+        <menu name="Overview">
+            <item name="Introduction" href="index.html"/>
+            <item name="Goals" href="plugin-info.html"/>
+        </menu>
+    </body>
+</project>

Propchange: axis/axis1/java/trunk/maven/maven-axis-server-plugin/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: axis/axis1/java/trunk/maven/maven-java2wsdl-plugin/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/maven/maven-java2wsdl-plugin/pom.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/maven/maven-java2wsdl-plugin/pom.xml (original)
+++ axis/axis1/java/trunk/maven/maven-java2wsdl-plugin/pom.xml Thu Mar 22 21:16:04 2012
@@ -27,10 +27,17 @@
     </parent>
     <artifactId>maven-java2wsdl-plugin</artifactId>
     <packaging>maven-plugin</packaging>
-    <name>java2wsdl plugin</name>
+    <name>Axis :: Maven :: maven-java2wsdl-plugin</name>
     <description>
         Axis java2wsdl Maven plugin.
     </description>
+    <url>${baseUrl}/maven/java2wsdl</url>
+    <distributionManagement>
+        <site>
+            <id>axis</id>
+            <url>${baseSiteUrl}/maven/java2wsdl</url>
+        </site>
+    </distributionManagement>
     <dependencies>
         <dependency>
             <groupId>${project.groupId}</groupId>

Added: axis/axis1/java/trunk/maven/maven-java2wsdl-plugin/src/site/site.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/maven/maven-java2wsdl-plugin/src/site/site.xml?rev=1304069&view=auto
==============================================================================
--- axis/axis1/java/trunk/maven/maven-java2wsdl-plugin/src/site/site.xml (added)
+++ axis/axis1/java/trunk/maven/maven-java2wsdl-plugin/src/site/site.xml Thu Mar 22 21:16:04 2012
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  ~ 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 name="maven-java2wsdl-plugin">
+    <body>
+        <menu name="Overview">
+            <item name="Introduction" href="index.html"/>
+            <item name="Goals" href="plugin-info.html"/>
+        </menu>
+    </body>
+</project>

Propchange: axis/axis1/java/trunk/maven/maven-java2wsdl-plugin/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/pom.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/pom.xml (original)
+++ axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/pom.xml Thu Mar 22 21:16:04 2012
@@ -27,10 +27,17 @@
     </parent>
     <artifactId>maven-wsdl2java-plugin</artifactId>
     <packaging>maven-plugin</packaging>
-    <name>wsdl2java plugin</name>
+    <name>Axis :: Maven :: maven-wsdl2java-plugin</name>
     <description>
         Axis wsdl2java Maven plugin.
     </description>
+    <url>${baseUrl}/maven/wsdl2java</url>
+    <distributionManagement>
+        <site>
+            <id>axis</id>
+            <url>${baseSiteUrl}/maven/wsdl2java</url>
+        </site>
+    </distributionManagement>
     <dependencies>
         <dependency>
             <groupId>${project.groupId}</groupId>

Modified: axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/src/site/site.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/src/site/site.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/src/site/site.xml (original)
+++ axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/src/site/site.xml Thu Mar 22 21:16:04 2012
@@ -17,7 +17,7 @@
   ~ specific language governing permissions and limitations
   ~ under the License.
   -->
-<project>
+<project name="maven-wsdl2java-plugin">
     <body>
         <menu name="Overview">
             <item name="Introduction" href="index.html"/>

Modified: axis/axis1/java/trunk/maven/nsmap/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/maven/nsmap/pom.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/maven/nsmap/pom.xml (original)
+++ axis/axis1/java/trunk/maven/nsmap/pom.xml Thu Mar 22 21:16:04 2012
@@ -30,4 +30,15 @@
     <description>
     	Contains classes shared by maven-wsdl2java-plugin and maven-java2wsdl-plugin.
     </description>
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                    <skipDeploy>true</skipDeploy>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>

Modified: axis/axis1/java/trunk/maven/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/maven/pom.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/maven/pom.xml (original)
+++ axis/axis1/java/trunk/maven/pom.xml Thu Mar 22 21:16:04 2012
@@ -26,7 +26,7 @@
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>maven</artifactId>
-    <name>Maven plugins</name>
+    <name>Axis :: Maven</name>
     <packaging>pom</packaging>
     <description>
         Root POM for the Axis Maven plugins.

Modified: axis/axis1/java/trunk/maven/src/site/site.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/maven/src/site/site.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/maven/src/site/site.xml (original)
+++ axis/axis1/java/trunk/maven/src/site/site.xml Thu Mar 22 21:16:04 2012
@@ -17,12 +17,15 @@
   ~ specific language governing permissions and limitations
   ~ under the License.
   -->
-<project>
+<project name="Maven plugins">
     <body>
+        <menu name="Overview">
+            <item name="Introduction" href="index.html"/>
+        </menu>
         <menu name="Plugins">
-            <item name="maven-wsdl2java-plugin" href="maven-wsdl2java-plugin/index.html"/>
-            <item name="maven-java2wsdl-plugin" href="maven-java2wsdl-plugin/index.html"/>
-            <item name="maven-axis-server-plugin" href="maven-axis-server-plugin/index.html"/>
+            <item name="maven-wsdl2java-plugin" href="wsdl2java/index.html"/>
+            <item name="maven-java2wsdl-plugin" href="java2wsdl/index.html"/>
+            <item name="maven-axis-server-plugin" href="axis-server/index.html"/>
         </menu>
     </body>
 </project>

Modified: axis/axis1/java/trunk/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/pom.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/pom.xml (original)
+++ axis/axis1/java/trunk/pom.xml Thu Mar 22 21:16:04 2012
@@ -29,7 +29,7 @@
     <name>Axis</name>
     <version>1.4.1-SNAPSHOT</version>
     <packaging>pom</packaging>
-    <url>http://axis.apache.org/axis/java/</url>
+    <url>${baseUrl}/</url>
     <issueManagement>
         <system>jira</system>
         <url>http://issues.apache.org/jira/browse/AXIS</url>
@@ -160,11 +160,15 @@
             </plugin>
         </plugins>
     </reporting>
+    <properties>
+        <baseUrl>http://axis.apache.org/axis/java</baseUrl>
+        <!-- Dummy site URL to be able to use site:stage -->
+        <baseSiteUrl>dav:http://localhost/sites/axis</baseSiteUrl>
+    </properties>
     <distributionManagement>
         <site>
-            <!-- Dummy site URL to be able to use site:stage -->
-            <id>axis-dummy</id>
-            <url>dav:http://localhost/sites/axis</url>
+            <id>axis</id>
+            <url>${baseSiteUrl}/</url>
         </site>
     </distributionManagement>
 </project>

Modified: axis/axis1/java/trunk/samples/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/samples/pom.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/samples/pom.xml (original)
+++ axis/axis1/java/trunk/samples/pom.xml Thu Mar 22 21:16:04 2012
@@ -55,6 +55,13 @@
                     <skip>true</skip>
                 </configuration>
             </plugin>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                    <skipDeploy>true</skipDeploy>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 </project>

Modified: axis/axis1/java/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/src/site/site.xml?rev=1304069&r1=1304068&r2=1304069&view=diff
==============================================================================
--- axis/axis1/java/trunk/src/site/site.xml (original)
+++ axis/axis1/java/trunk/src/site/site.xml Thu Mar 22 21:16:04 2012
@@ -37,6 +37,13 @@
             <item name="Axis 1.x" href="http://axis.apache.org/axis/"/>
             <item name="Java" href="http://axis.apache.org/axis/java/"/>
         </breadcrumbs>
+        <menu name="About">
+            <item name="Introduction" href="index.html"/>
+            <item name="Issue Tracking" href="issue-tracking.html"/>
+            <item name="Mailing Lists" href="mail-lists.html"/>
+            <item name="Source Repository" href="source-repository.html"/>
+            <item name="Dependencies" href="core/dependencies.html"/>
+        </menu>
         <menu name="Downloads">
             <item name="Releases" href="releases.html"/>
             <item name="Changelogs" href="changelog.html" collapse="true">
@@ -59,13 +66,13 @@
             <item name="Reading Guide" href="reading.html"/>
         </menu>
         <menu name="More...">
-            <item name="Ant tasks" href="axis-ant/index.html"/>
+            <item name="Ant tasks" href="ant/index.html"/>
             <item name="Maven plugins" href="maven/index.html"/>
-            <item name="Castor support" href="axis-castor/index.html"/>
-            <item name="JMS transport" href="axis-jms/index.html"/>
-            <item name="java.net HTTP transport" href="axis-rt-transports-http-javanet/index.html"/>
+            <item name="Castor support" href="castor/index.html"/>
+            <item name="JMS transport" href="transports/jms/index.html"/>
+            <item name="java.net HTTP transport" href="transports/http-javanet/index.html"/>
+            <item name="Stand-alone server" href="standalone-server/index.html"/>
         </menu>
-        <menu ref="reports" inherit="bottom"/>
         <menu name="Apache" inherit="bottom">
             <item name="License" href="http://www.apache.org/licenses/LICENSE-2.0.html" />
             <item name="Sponsorship" href="http://www.apache.org/foundation/sponsorship.html"/>