You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by fe...@apache.org on 2011/04/05 06:46:26 UTC

svn commit: r1088892 - in /james/mailet/maven-mailetdocs-plugin/trunk: ./ src/reporting-site/ src/reporting-site/resources/ src/reporting-site/resources/images/ src/reporting-site/resources/images/logos/ src/site/ src/site/resources/images/ src/site/re...

Author: felixk
Date: Tue Apr  5 04:46:25 2011
New Revision: 1088892

URL: http://svn.apache.org/viewvc?rev=1088892&view=rev
Log:
Switch to and force maven 3. Add generation of technical reports using the -Psite-reports profile

Added:
    james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/
    james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/resources/
    james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/resources/images/
    james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/resources/images/logos/
    james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/resources/images/logos/asf-logo-reduced.gif   (with props)
    james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/resources/images/logos/james-mailetdocs-logo.gif   (with props)
    james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/site.xml   (with props)
    james/mailet/maven-mailetdocs-plugin/trunk/src/site/resources/images/logos/
    james/mailet/maven-mailetdocs-plugin/trunk/src/site/resources/images/logos/asf-logo-reduced.gif
      - copied unchanged from r1075291, james/mailet/maven-mailetdocs-plugin/trunk/src/site/resources/images/asf-logo-reduced.gif
    james/mailet/maven-mailetdocs-plugin/trunk/src/site/resources/images/logos/james-mailetdocs-logo.gif
      - copied unchanged from r1075291, james/mailet/maven-mailetdocs-plugin/trunk/src/site/resources/images/james-mailetdocs-logo.gif
Removed:
    james/mailet/maven-mailetdocs-plugin/trunk/src/site/resources/images/asf-logo-reduced.gif
    james/mailet/maven-mailetdocs-plugin/trunk/src/site/resources/images/james-mailetdocs-logo.gif
Modified:
    james/mailet/maven-mailetdocs-plugin/trunk/pom.xml
    james/mailet/maven-mailetdocs-plugin/trunk/src/site/site.xml

Modified: james/mailet/maven-mailetdocs-plugin/trunk/pom.xml
URL: http://svn.apache.org/viewvc/james/mailet/maven-mailetdocs-plugin/trunk/pom.xml?rev=1088892&r1=1088891&r2=1088892&view=diff
==============================================================================
--- james/mailet/maven-mailetdocs-plugin/trunk/pom.xml (original)
+++ james/mailet/maven-mailetdocs-plugin/trunk/pom.xml Tue Apr  5 04:46:25 2011
@@ -19,37 +19,46 @@
 -->
 <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.james</groupId>
+    <artifactId>james-project</artifactId>
+    <version>1.6</version>
+  </parent>
   <groupId>org.apache.james</groupId>
   <artifactId>maven-mailetdocs-plugin</artifactId>
+  <name>Mailetdocs Maven Plugin</name>
+  <url>http://james.apache.org/mailet/maven-mailetdocs-plugin/</url>
+  <inceptionYear>2008</inceptionYear>
+  <version>0.2-SNAPSHOT</version>
   <packaging>maven-plugin</packaging>
+
   <description>
   	This plugin generates documentation for Mailets by collating
   	information available from implementation source.
   </description>
-  <version>0.2-SNAPSHOT</version>
-  <name>Mailetdocs Maven Plugin</name>
-  <parent>
-    <groupId>org.apache.james</groupId>
-    <artifactId>james-project</artifactId>
-    <version>1.5</version>
-  </parent>
-  <url>http://james.apache.org/mailet/maven-mailetdocs-plugin/</url>
-  <inceptionYear>2008</inceptionYear>
+  
+  <properties>
+    <target.jdk>1.5</target.jdk>
+  </properties>
+
   <distributionManagement>
     <site>
       <id>mailetdocs-website</id>
       <url>scp://people.apache.org/www/james.apache.org/mailet/maven-mailetdocs-plugin/</url>
     </site>
   </distributionManagement>
+
   <issueManagement>
     <system>JIRA</system>
     <url>http://issues.apache.org/jira/browse/MAILETDOCS</url>
   </issueManagement>
+
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/james/mailet/maven-mailetdocs-plugin/trunk</connection>
     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/james/mailet/maven-mailetdocs-plugin/trunk</developerConnection>
     <url>http://svn.apache.org/viewcvs.cgi/james/mailet/maven-mailetdocs-plugin/trunk/?root=Apache-SVN</url>
   </scm>
+
   <repositories>
     <!-- needed for javamail -->
     <repository>
@@ -107,6 +116,7 @@
       <scope>test</scope>
     </dependency>
   </dependencies>
+
   <mailingLists>
     <mailingList>
       <name>Apache JAMES Server List</name>
@@ -116,14 +126,80 @@
       <archive>http://mail-archives.apache.org/mod_mbox/james-server-dev/</archive>
     </mailingList>
   </mailingLists>
+
   <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <version>2.3.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-plugin-plugin</artifactId>
+          <version>2.7</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-remote-resources-plugin</artifactId>
+          <version>1.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-doap-plugin</artifactId>
+          <version>1.1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-jar-plugin</artifactId>
+          <version>2.3.1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-jxr-plugin</artifactId>
+          <version>2.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-surefire-report-plugin</artifactId>
+          <version>2.8</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <version>2.7</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-pmd-plugin</artifactId>
+          <version>2.5</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-changes-plugin</artifactId>
+          <version>2.4</version>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>findbugs-maven-plugin</artifactId>
+          <version>2.3.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>taglist-maven-plugin</artifactId>
+          <version>2.4</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
     <plugins>
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
           <optimize>true</optimize>
-          <source>1.4</source>
-          <target>1.4</target>
+          <source>${target.jdk}</source>
+          <target>${target.jdk}</target>
         </configuration>
       </plugin>
       <plugin>
@@ -140,8 +216,8 @@
       </plugin>
       <!-- Add NOTICE and LICENSE to generated JAR -->
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-remote-resources-plugin</artifactId>
-        <version>1.0</version>
         <executions>
           <execution>
             <goals>
@@ -160,6 +236,7 @@
           </execution>
         </executions>
       </plugin>
+      <!--
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-doap-plugin</artifactId>
@@ -185,6 +262,7 @@
           </asfExtOptions>
         </configuration>
       </plugin>
+      -->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
@@ -192,160 +270,213 @@
           <archive>
             <manifestEntries>
               <Specification-Title>Apache MailetDocs Plugin</Specification-Title>
-              <Specification-Version>${pom.version}</Specification-Version>
+              <Specification-Version>${project.version}</Specification-Version>
               <Specification-Vendor>The Apache Software Foundation</Specification-Vendor>
               <Implementation-Title>Apache MailetDocs Plugin</Implementation-Title>
-              <Implementation-Version>${pom.version}</Implementation-Version>
+              <Implementation-Version>${project.version}</Implementation-Version>
               <Implementation-Vendor>The Apache Software Foundation</Implementation-Vendor>
               <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
-              <url>${pom.url}</url>
+              <url>${project.url}</url>
             </manifestEntries>
           </archive>
         </configuration>
       </plugin>
-    </plugins>
-  </build>
-  <reporting>
-    <plugins>
-      <plugin>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <version>2.4.3</version>
-      </plugin>
-      <plugin>
-        <artifactId>maven-surefire-report-plugin</artifactId>
-        <version>2.4.3</version>
-      </plugin>
-      <plugin>
-        <artifactId>maven-javadoc-plugin</artifactId>
-        <version>2.4</version>
-        <configuration>
-          <!-- Annotate Mojo fields -->
-          <show>private</show>
-          <taglets>
-            <taglet>
-              <tagletClass>
-                org.apache.maven.tools.plugin.javadoc.MojoAggregatorTypeTaglet
-              </tagletClass>
-            </taglet>
-            <taglet>
-              <tagletClass>
-                org.apache.maven.tools.plugin.javadoc.MojoComponentFieldTaglet
-              </tagletClass>
-            </taglet>
-            <taglet>
-              <tagletClass>
-                org.apache.maven.tools.plugin.javadoc.MojoConfiguratorTypeTaglet
-              </tagletClass>
-            </taglet>
-            <taglet>
-              <tagletClass>
-                org.apache.maven.tools.plugin.javadoc.MojoExecuteTypeTaglet
-              </tagletClass>
-            </taglet>
-            <taglet>
-              <tagletClass>
-                org.apache.maven.tools.plugin.javadoc.MojoExecutionStrategyTypeTaglet
-              </tagletClass>
-            </taglet>
-            <taglet>
-              <tagletClass>
-                org.apache.maven.tools.plugin.javadoc.MojoGoalTypeTaglet
-              </tagletClass>
-            </taglet>
-            <taglet>
-              <tagletClass>
-                org.apache.maven.tools.plugin.javadoc.MojoInheritByDefaultTypeTaglet
-              </tagletClass>
-            </taglet>
-            <taglet>
-              <tagletClass>
-                org.apache.maven.tools.plugin.javadoc.MojoInstantiationStrategyTypeTaglet
-              </tagletClass>
-            </taglet>
-            <taglet>
-              <tagletClass>
-                org.apache.maven.tools.plugin.javadoc.MojoParameterFieldTaglet
-              </tagletClass>
-            </taglet>
-            <taglet>
-              <tagletClass>
-                org.apache.maven.tools.plugin.javadoc.MojoPhaseTypeTaglet
-              </tagletClass>
-            </taglet>
-            <taglet>
-              <tagletClass>
-                org.apache.maven.tools.plugin.javadoc.MojoReadOnlyFieldTaglet
-              </tagletClass>
-            </taglet>
-            <taglet>
-              <tagletClass>
-                org.apache.maven.tools.plugin.javadoc.MojoRequiredFieldTaglet
-              </tagletClass>
-            </taglet>
-            <taglet>
-              <tagletClass>
-                org.apache.maven.tools.plugin.javadoc.MojoRequiresDependencyResolutionTypeTaglet
-              </tagletClass>
-            </taglet>
-            <taglet>
-              <tagletClass>
-                org.apache.maven.tools.plugin.javadoc.MojoRequiresDirectInvocationTypeTaglet
-              </tagletClass>
-            </taglet>
-            <taglet>
-              <tagletClass>
-                org.apache.maven.tools.plugin.javadoc.MojoRequiresOnLineTypeTaglet
-              </tagletClass>
-            </taglet>
-            <taglet>
-              <tagletClass>
-                org.apache.maven.tools.plugin.javadoc.MojoRequiresProjectTypeTaglet
-              </tagletClass>
-            </taglet>
-            <taglet>
-              <tagletClass>
-                org.apache.maven.tools.plugin.javadoc.MojoRequiresReportsTypeTaglet
-              </tagletClass>
-            </taglet>
-          </taglets>
-          <tagletArtifact>
-            <groupId>org.apache.maven.plugin-tools</groupId>
-            <artifactId>maven-plugin-tools-javadoc</artifactId>
-            <version>2.4.3</version>
-          </tagletArtifact>
-        </configuration>
-      </plugin>
+
+      <!-- Site generation -->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-jxr-plugin</artifactId>
-        <version>2.1</version>
-      </plugin>
-      <plugin>
         <artifactId>maven-site-plugin</artifactId>
-        <version>2.0-beta-6</version>
-      </plugin>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>rat-maven-plugin</artifactId>
-        <version>1.0-alpha-3</version>
+        <executions>
+          <!-- Attach non-reporting site-descriptor when installing -->
+          <execution>
+            <id>attach-descriptor</id>
+            <goals>
+              <goal>attach-descriptor</goal>
+            </goals>
+            <configuration>
+              <siteDirectory>${basedir}/src/site</siteDirectory>
+              <generateReports>false</generateReports>
+            </configuration>
+          </execution>
+        </executions>
         <configuration>
-          <excludes>
-            <exclude>NOTICE.txt</exclude>
-            <exclude>LICENSE.txt</exclude>
-            <!-- Generated by Maven -->
-            <exclude>release.properties</exclude>
-          </excludes>
+          <siteDirectory>${maven-site-plugin.siteDirectory}</siteDirectory>
+          <generateReports>${maven-site-plugin.generateReports}</generateReports>
+          <reportPlugins>
+            <!-- Order matters. First project-info-reports, second jxr. -->
+            <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-project-info-reports-plugin</artifactId>
+              <reports>
+                    <report>index</report>
+                    <report>project-team</report>
+                    <report>mailing-list</report>
+                    <report>cim</report>
+                    <report>issue-tracking</report>
+                    <report>license</report>
+                    <report>scm</report>
+                    <report>dependencies</report>
+              </reports>
+            </plugin>
+            <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-jxr-plugin</artifactId>
+              <configuration>
+                <aggregate>true</aggregate>
+              </configuration>
+            </plugin>
+            <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-javadoc-plugin</artifactId>
+              <configuration>
+                <!-- Annotate Mojo fields -->
+                <show>private</show>
+                <taglets>
+                  <taglet>
+                    <tagletClass>org.apache.maven.tools.plugin.javadoc.MojoAggregatorTypeTaglet</tagletClass>
+                  </taglet>
+                  <taglet>
+                    <tagletClass>org.apache.maven.tools.plugin.javadoc.MojoComponentFieldTaglet</tagletClass>
+                  </taglet>
+                  <taglet>
+                    <tagletClass>org.apache.maven.tools.plugin.javadoc.MojoConfiguratorTypeTaglet</tagletClass>
+                  </taglet>
+                  <taglet>
+                    <tagletClass>org.apache.maven.tools.plugin.javadoc.MojoExecuteTypeTaglet</tagletClass>
+                  </taglet>
+                  <taglet>
+                    <tagletClass>org.apache.maven.tools.plugin.javadoc.MojoExecutionStrategyTypeTaglet</tagletClass>
+                  </taglet>
+                  <taglet>
+                    <tagletClass>org.apache.maven.tools.plugin.javadoc.MojoGoalTypeTaglet</tagletClass>
+                  </taglet>
+                  <taglet>
+                    <tagletClass>org.apache.maven.tools.plugin.javadoc.MojoInheritByDefaultTypeTaglet</tagletClass>
+                  </taglet>
+                  <taglet>
+                    <tagletClass>org.apache.maven.tools.plugin.javadoc.MojoInstantiationStrategyTypeTaglet</tagletClass>
+                  </taglet>
+                  <taglet>
+                    <tagletClass>org.apache.maven.tools.plugin.javadoc.MojoParameterFieldTaglet</tagletClass>
+                  </taglet>
+                  <taglet>
+                    <tagletClass>org.apache.maven.tools.plugin.javadoc.MojoPhaseTypeTaglet</tagletClass>
+                  </taglet>
+                  <taglet>
+                    <tagletClass>org.apache.maven.tools.plugin.javadoc.MojoReadOnlyFieldTaglet</tagletClass>
+                  </taglet>
+                  <taglet>
+                    <tagletClass>org.apache.maven.tools.plugin.javadoc.MojoRequiredFieldTaglet</tagletClass>
+                  </taglet>
+                  <taglet>
+                    <tagletClass>org.apache.maven.tools.plugin.javadoc.MojoRequiresDependencyResolutionTypeTaglet</tagletClass>
+                  </taglet>
+                  <taglet>
+                    <tagletClass>org.apache.maven.tools.plugin.javadoc.MojoRequiresDirectInvocationTypeTaglet</tagletClass>
+                  </taglet>
+                  <taglet>
+                    <tagletClass>org.apache.maven.tools.plugin.javadoc.MojoRequiresOnLineTypeTaglet</tagletClass>
+                  </taglet>
+                  <taglet>
+                    <tagletClass>org.apache.maven.tools.plugin.javadoc.MojoRequiresProjectTypeTaglet</tagletClass>
+                  </taglet>
+                  <taglet>
+                    <tagletClass>org.apache.maven.tools.plugin.javadoc.MojoRequiresReportsTypeTaglet</tagletClass>
+                  </taglet>
+                </taglets>
+                <tagletArtifact>
+                  <groupId>org.apache.maven.plugin-tools</groupId>
+                  <artifactId>maven-plugin-tools-javadoc</artifactId>
+                  <version>2.7</version>
+                </tagletArtifact>
+              </configuration>
+              <reportSets>
+                <reportSet>
+                  <reports>
+                    <report>aggregate</report>
+                    <report>test-aggregate</report>
+                  </reports>
+                </reportSet>
+              </reportSets>
+            </plugin>
+            <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-pmd-plugin</artifactId>
+              <configuration>
+                <linkXref>true</linkXref>
+                <aggregate>true</aggregate>
+                <targetJdk>${target.jdk}</targetJdk>
+                <rulesets>
+                  <ruleset>/rulesets/basic.xml</ruleset>
+                  <ruleset>/rulesets/controversial.xml</ruleset>
+                </rulesets>
+                <format>xml</format>
+                <xrefLocation>${project.reporting.outputDirectory}/xref</xrefLocation>
+                <xrefTestLocation>${project.reporting.outputDirectory}/xref-test</xrefTestLocation>
+                <sourceEncoding>utf-8</sourceEncoding>
+                <minimumTokens>100</minimumTokens>
+              </configuration>
+            </plugin>
+            <plugin>
+              <groupId>org.codehaus.mojo</groupId>
+              <artifactId>findbugs-maven-plugin</artifactId>
+              <configuration>
+                <!-- required by dashboard plugin and hudson -->
+                <xmlOutput>true</xmlOutput>
+                <effort>Max</effort>
+                <findbugsXmlOutput>true</findbugsXmlOutput>
+                <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
+              </configuration>
+            </plugin>
+            <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-changes-plugin</artifactId>
+              <configuration>
+                  <onlyCurrentVersion>true</onlyCurrentVersion>
+                  <resolutionIds>Closed</resolutionIds>
+                  <maxEntries>1000</maxEntries>
+              </configuration>
+              <reportSets>
+                <reportSet>
+                  <reports>
+                    <report>jira-report</report>
+                  </reports>
+                </reportSet>
+              </reportSets>
+            </plugin>
+            <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-surefire-report-plugin</artifactId>
+              <configuration>
+                <argLine>-Xmx1024m -XX:MaxPermSize=512m</argLine>
+                <aggregate>true</aggregate>
+                <linkXref>true</linkXref>
+                <xrefLocation>${project.reporting.outputDirectory}</xrefLocation>
+              </configuration>
+            </plugin>
+            <plugin>
+              <groupId>org.apache.rat</groupId>
+              <artifactId>apache-rat-plugin</artifactId>
+              <configuration>
+                <excludes>
+                  <exclude>NOTICE.txt</exclude>
+                  <exclude>LICENSE.txt</exclude>
+                  <!-- Generated by Maven -->
+                  <exclude>release.properties</exclude>
+                </excludes>
+              </configuration>
+            </plugin>
+            <plugin>
+              <groupId>org.codehaus.mojo</groupId>
+              <artifactId>taglist-maven-plugin</artifactId>
+            </plugin>
+            <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-plugin-plugin</artifactId>
+            </plugin>
+          </reportPlugins>
         </configuration>
       </plugin>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>taglist-maven-plugin</artifactId>
-        <version>2.2</version>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-plugin-plugin</artifactId>
-      </plugin>
     </plugins>
-  </reporting>
+  </build>
 </project>

Added: james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/resources/images/logos/asf-logo-reduced.gif
URL: http://svn.apache.org/viewvc/james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/resources/images/logos/asf-logo-reduced.gif?rev=1088892&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/resources/images/logos/asf-logo-reduced.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/resources/images/logos/james-mailetdocs-logo.gif
URL: http://svn.apache.org/viewvc/james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/resources/images/logos/james-mailetdocs-logo.gif?rev=1088892&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/resources/images/logos/james-mailetdocs-logo.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/site.xml
URL: http://svn.apache.org/viewvc/james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/site.xml?rev=1088892&view=auto
==============================================================================
--- james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/site.xml (added)
+++ james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/site.xml Tue Apr  5 04:46:25 2011
@@ -0,0 +1,47 @@
+<?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="${project.name}">
+
+    <skin>
+        <groupId>org.apache.james</groupId>
+        <artifactId>maven-skin</artifactId>
+        <version>1.6</version>
+    </skin>
+
+    <bannerLeft>
+        <name>JAMES MailetDocs Maven Plugin</name>
+        <src>/images/logos/james-mailetdocs-logo.gif</src>
+        <href>http://james.apache.org/mailet/index.html</href>
+        <alt>james-mailetdocs-logo.gif</alt>
+    </bannerLeft>
+
+    <bannerRight>
+        <name>The Apache Software Foundation</name>
+        <src>images/logos/asf-logo-reduced.gif</src>
+        <href>http://www.apache.org/index.html</href>
+    </bannerRight>
+
+    <body>
+
+        <menu ref="reports" />
+
+    </body>
+
+</project>

Propchange: james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: james/mailet/maven-mailetdocs-plugin/trunk/src/reporting-site/site.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Modified: james/mailet/maven-mailetdocs-plugin/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/james/mailet/maven-mailetdocs-plugin/trunk/src/site/site.xml?rev=1088892&r1=1088891&r2=1088892&view=diff
==============================================================================
--- james/mailet/maven-mailetdocs-plugin/trunk/src/site/site.xml (original)
+++ james/mailet/maven-mailetdocs-plugin/trunk/src/site/site.xml Tue Apr  5 04:46:25 2011
@@ -18,10 +18,17 @@
   under the License.    
 -->
 <project name="Apache JAMES MailetDocs Maven Plugin">
+  <skin>
+    <groupId>org.apache.james</groupId>
+    <artifactId>maven-skin</artifactId>
+    <version>1.6</version>
+  </skin>
+
   <bannerLeft>
     <name>JAMES MailetDocs Maven Plugin</name>
-    <src>/images/james-mailetdocs-logo.gif</src>
+    <src>/images/logos/james-mailetdocs-logo.gif</src>
     <href>http://james.apache.org/mailet/index.html</href>
+    <alt>james-mailetdocs-logo.gif</alt>
   </bannerLeft>
 
   <bannerRight>
@@ -30,12 +37,6 @@
     <href>http://www.apache.org/index.html</href>
   </bannerRight> 
 
-  <skin>
-    <groupId>org.apache.james</groupId>
-    <artifactId>maven-skin</artifactId>
-    <version>1.2</version>
-  </skin>
-
   <body>
 
     <menu name="MailetDocs Maven Plugin">



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org