You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by er...@apache.org on 2006/02/10 14:01:35 UTC

svn commit: r376654 - in /directory/trunks/mina: pom.xml src/site/site.xml

Author: ersiner
Date: Fri Feb 10 05:01:34 2006
New Revision: 376654

URL: http://svn.apache.org/viewcvs?rev=376654&view=rev
Log:
Added site distribution element in pom.
Updated some links.

Modified:
    directory/trunks/mina/pom.xml
    directory/trunks/mina/src/site/site.xml

Modified: directory/trunks/mina/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunks/mina/pom.xml?rev=376654&r1=376653&r2=376654&view=diff
==============================================================================
--- directory/trunks/mina/pom.xml (original)
+++ directory/trunks/mina/pom.xml Fri Feb 10 05:01:34 2006
@@ -12,7 +12,14 @@
   <name>Apache MINA</name>
   <packaging>pom</packaging>
 
-  <url>http://directory.apache.org/newsite/projects/network/</url>
+  <url>http://directory.apache.org/newsite/projects/mina/</url>
+
+  <distributionManagement>
+    <site>
+      <id>apache.websites</id>
+      <url>scp://minotaur.apache.org/www/directory.apache.org/newsite/projects/mina/</url>
+    </site>
+  </distributionManagement>
 
   <issueManagement>
     <system>jira</system>
@@ -190,12 +197,38 @@
         <artifactId>maven-site-plugin</artifactId>
         <version>2.0-SNAPSHOT</version>
       </plugin>
+      <plugin>
+        <inherited>false</inherited>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>site</phase>
+            <configuration>
+              <tasks>
+                <javadoc destdir="target/site/apidocs" author="true" use="true" windowtitle="Apache MINA">
+                  <sourcepath>
+                    <dirset dir=".">
+                      <include name="*/src/main/java"/>
+                    </dirset>
+                  </sourcepath>
+                  <package name="org.apache.mina.*"/>
+                </javadoc>
+              </tasks>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
 
     </plugins>
   </build>
 
   <reporting>
     <plugins>
+      <!-- This has been disabled to due license expiration issue. -->
       <!-- <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-clover-plugin</artifactId>
@@ -204,14 +237,17 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-project-info-reports-plugin</artifactId>
       </plugin>
-      <plugin>
+      <!-- This is no longer needed while it cannot do 
+           fully connected multi module apidocs. -->
+      <!-- <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
-      </plugin>
+      </plugin> -->
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>taglist-maven-plugin</artifactId>
       </plugin>
+      <!-- This has been disabled due to incorrect functioning. -->
       <!-- <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>jxr-maven-plugin</artifactId>

Modified: directory/trunks/mina/src/site/site.xml
URL: http://svn.apache.org/viewcvs/directory/trunks/mina/src/site/site.xml?rev=376654&r1=376653&r2=376654&view=diff
==============================================================================
--- directory/trunks/mina/src/site/site.xml (original)
+++ directory/trunks/mina/src/site/site.xml Fri Feb 10 05:01:34 2006
@@ -11,9 +11,9 @@
 
   <body>
      <links>
-       <item name="ApacheDS" href="http://directory.apache.org/newsite/subprojects/apacheds/index.html"/>
-       <item name="Naming" href="http://directory.apache.org/subprojects/naming/index.html"/>
-       <item name="Network Layer (MINA)" href="http://directory.apache.org/newsite/subprojects/network/index.html"/>
+       <item name="ApacheDS" href="http://directory.apache.org/newsite/projects/apacheds/index.html"/>
+       <item name="Naming" href="http://directory.apache.org/projects/naming/index.html"/>
+       <item name="Network Layer (MINA)" href="http://directory.apache.org/newsite/projects/mina/index.html"/>
        <item name="Directory" href="http://directory.apache.org/newsite/index.html"/>
     </links>
  
@@ -38,15 +38,19 @@
       <item name="JavaDocs" href="/apidocs-examples/index.html"/>
       <item name="Source code" href="/xref-examples/index.html"/>
     </menu>
- 
+
+-->
+
     <menu name="MINA References">
       <item name="JavaDocs" href="/apidocs/index.html"/>
+    </menu>
+<!--
       <item name="Source code" href="/xref/index.html"/>
       <item name="Source code (SVN)" href="http://svn.apache.org/viewcvs.cgi/directory/network/trunk/?root=Apache-SVN"/>
       <item name="Wiki" href="http://wiki.apache.org/directory/MinaHome"/>
     </menu>
 -->
- 
-    <!-- ${reports} -->
+
+    ${reports}
   </body>
 </project>