Author: veithen Date: Sun Jan 8 17:10:46 2012 New Revision: 1228897 URL: http://svn.apache.org/viewvc?rev=1228897&view=rev Log: Defined basic Maven site structure.
Added: axis/axis1/java/trunk/src/site/ axis/axis1/java/trunk/src/site/site.xml (with props) Modified: axis/axis1/java/trunk/axis-ant/pom.xml axis/axis1/java/trunk/axis-maven-plugin/pom.xml axis/axis1/java/trunk/pom.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=1228897&r1=1228896&r2=1228897&view=diff ============================================================================== --- axis/axis1/java/trunk/axis-ant/pom.xml (original) +++ axis/axis1/java/trunk/axis-ant/pom.xml Sun Jan 8 17:10:46 2012 @@ -26,7 +26,7 @@ <relativePath>../pom.xml</relativePath> </parent> <artifactId>axis-ant</artifactId> - <name>Axis :: Ant tasks</name> + <name>Ant tasks</name> <dependencies> <dependency> <groupId>${project.groupId}</groupId> Modified: axis/axis1/java/trunk/axis-maven-plugin/pom.xml URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-maven-plugin/pom.xml?rev=1228897&r1=1228896&r2=1228897&view=diff ============================================================================== --- axis/axis1/java/trunk/axis-maven-plugin/pom.xml (original) +++ axis/axis1/java/trunk/axis-maven-plugin/pom.xml Sun Jan 8 17:10:46 2012 @@ -27,7 +27,7 @@ </parent> <artifactId>axis-maven-plugin</artifactId> <packaging>maven-plugin</packaging> - <name>Axis :: Maven plugin</name> + <name>Maven plugin</name> <dependencies> <dependency> <groupId>${project.groupId}</groupId> @@ -66,4 +66,12 @@ <properties> <maven.version>2.0.9</maven.version> </properties> + <reporting> + <plugins> + <plugin> + <artifactId>maven-plugin-plugin</artifactId> + <version>2.9</version> + </plugin> + </plugins> + </reporting> </project> Modified: axis/axis1/java/trunk/pom.xml URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/pom.xml?rev=1228897&r1=1228896&r2=1228897&view=diff ============================================================================== --- axis/axis1/java/trunk/pom.xml (original) +++ axis/axis1/java/trunk/pom.xml Sun Jan 8 17:10:46 2012 @@ -29,6 +29,7 @@ <name>Axis</name> <version>1.4.1-SNAPSHOT</version> <packaging>pom</packaging> + <url>http://axis.apache.org/axis/java/</url> <modules> <module>axis</module> <module>axis-jaxrpc</module> @@ -89,9 +90,32 @@ <artifactId>maven-antrun-plugin</artifactId> <version>1.7</version> </plugin> + <plugin> + <artifactId>maven-site-plugin</artifactId> + <version>3.0</version> + </plugin> </plugins> </pluginManagement> </build> + <reporting> + <plugins> + <plugin> + <artifactId>maven-project-info-reports-plugin</artifactId> + <version>2.4</version> + <reportSets> + <reportSet> + <reports> + <report>index</report> + <report>issue-tracking</report> + <report>mailing-list</report> + <!-- report>project-team</report --> + <report>scm</report> + </reports> + </reportSet> + </reportSets> + </plugin> + </plugins> + </reporting> <!-- TODO: remove this once a ulog release is deployed to Maven Central --> <repositories> Added: axis/axis1/java/trunk/src/site/site.xml URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/src/site/site.xml?rev=1228897&view=auto ============================================================================== --- axis/axis1/java/trunk/src/site/site.xml (added) +++ axis/axis1/java/trunk/src/site/site.xml Sun Jan 8 17:10:46 2012 @@ -0,0 +1,61 @@ +<?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="Apache Axis"> + <skin> + <groupId>org.apache.maven.skins</groupId> + <artifactId>maven-fluido-skin</artifactId> + <version>1.0</version> + </skin> + <publishDate format="yyyy-MM-dd" position="right"/> + <version position="right"/> + <body> + <breadcrumbs> + <item name="Apache" href="http://www.apache.org/"/> + <item name="Axis" href="http://axis.apache.org/"/> + <item name="Axis 1.x" href="http://axis.apache.org/axis1/"/> + <item name="Java" href="http://axis.apache.org/axis1/java/"/> + </breadcrumbs> + <menu name="Downloads"> + <item name="Releases" href="releases.html"/> + <item name="Snapshots" href="snapshots.html"/> + </menu> + <menu name="Documentation"> + <item name="Overview" href="overview.html"/> + <item name="Installation" href="install.html"/> + <item name="User's Guide" href="user-guide.html"/> + <item name="Developer's Guide" href="developers-guide.html"/> + <item name="Integration Guide" href="integration-guide.html"/> + <item name="Architecture Guide" href="architecture-guide.html"/> + <item name="Reference Guide" href="reference.html"/> + <item name="Reading Guide" href="reading.html"/> + </menu> + <menu name="More..."> + <item name="Ant tasks" href="axis-ant/index.html"/> + <item name="Maven plugin" href="axis-maven-plugin/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"/> + <item name="Thanks" href="http://www.apache.org/foundation/thanks.html"/> + <item name="Security" href="http://www.apache.org/security/"/> + </menu> + </body> +</project> Propchange: axis/axis1/java/trunk/src/site/site.xml ------------------------------------------------------------------------------ svn:eol-style = native