You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by ve...@apache.org on 2009/01/03 21:15:45 UTC

svn commit: r731081 - in /webservices/commons/trunk/modules/tcpmon: pom.xml site/ site/site.xml

Author: veithen
Date: Sat Jan  3 12:15:45 2009
New Revision: 731081

URL: http://svn.apache.org/viewvc?rev=731081&view=rev
Log:
Added Maven 2 site descriptor and reporting plugins.

Added:
    webservices/commons/trunk/modules/tcpmon/site/
    webservices/commons/trunk/modules/tcpmon/site/site.xml   (contents, props changed)
      - copied, changed from r729821, webservices/commons/trunk/modules/tcpmon/xdocs/navigation.xml
Modified:
    webservices/commons/trunk/modules/tcpmon/pom.xml

Modified: webservices/commons/trunk/modules/tcpmon/pom.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/tcpmon/pom.xml?rev=731081&r1=731080&r2=731081&view=diff
==============================================================================
--- webservices/commons/trunk/modules/tcpmon/pom.xml (original)
+++ webservices/commons/trunk/modules/tcpmon/pom.xml Sat Jan  3 12:15:45 2009
@@ -64,6 +64,56 @@
         <module>modules/tcpmon-eclipse-plugin</module>
         <module>modules/tcpmon-idea-plugin</module>
     </modules>
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <version>2.0-beta-7</version>
+                <inherited>false</inherited>
+                <configuration>
+                    <xdocDirectory>xdocs</xdocDirectory>
+                    <siteDirectory>site</siteDirectory>
+                    <moduleExcludes>
+                        <xdoc>navigation.xml</xdoc>
+                    </moduleExcludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <version>1.3</version>
+                <inherited>false</inherited>
+                <executions>
+                    <execution>
+                        <phase>site</phase>
+                        <goals>
+                            <goal>run</goal> 
+                        </goals>
+                        <configuration>
+                            <tasks>
+                                <copy todir="target/site">
+                                    <fileset dir="xdocs">
+                                        <exclude name="**/*.xml"/>
+                                    </fileset>
+                                </copy>
+                            </tasks>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+    <reporting>
+        <plugins>
+            <plugin>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <version>2.4</version>
+                <inherited>false</inherited>
+                <configuration>
+                    <aggregate>true</aggregate>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
     <distributionManagement>
         <repository>
             <id>apache-repo</id>

Copied: webservices/commons/trunk/modules/tcpmon/site/site.xml (from r729821, webservices/commons/trunk/modules/tcpmon/xdocs/navigation.xml)
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/tcpmon/site/site.xml?p2=webservices/commons/trunk/modules/tcpmon/site/site.xml&p1=webservices/commons/trunk/modules/tcpmon/xdocs/navigation.xml&r1=729821&r2=731081&rev=731081&view=diff
==============================================================================
--- webservices/commons/trunk/modules/tcpmon/xdocs/navigation.xml (original)
+++ webservices/commons/trunk/modules/tcpmon/site/site.xml Sat Jan  3 12:15:45 2009
@@ -1,11 +1,19 @@
-<project name="TCPMon">
-	<title>Web Services Commons : TCPMon </title>
+<project name="Web Services Commons : TCPMon">
+    <bannerLeft>
+        <name>Apache Axis2</name>
+        <src>http://www.apache.org/images/asf-logo.gif</src>
+        <href>http://www.apache.org/</href>
+    </bannerLeft>
+    <bannerRight>
+        <name>Apache TCPMon</name>
+        <href>http://ws.apache.org/commons/tcpmon/</href>
+    </bannerRight>
 	<body>
 		<menu name="TCPMon">
 			<item name="Home" href="index.html"/>
-			<item nane="Downloads">
+			<item name="Downloads">
 				<item name="Releases" href="download.cgi"/>
-				<item name="Source Code" href="http://svn.apache.org/viewcvs.cgi/webservices/commons/trunk/modules/tcpmon/"/>
+				<item name="Source Code" href="source-repository.html"/>
 			</item>
 			<item name="Documentation">
 				<item name="TCPMon Tutorial" href="tcpmontutorial.html"/>
@@ -17,5 +25,4 @@
 			</item>
 		</menu>
 	</body>
-	
 </project>

Propchange: webservices/commons/trunk/modules/tcpmon/site/site.xml
------------------------------------------------------------------------------
    svn:mergeinfo =