You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by vs...@apache.org on 2009/09/01 13:45:38 UTC

svn commit: r809980 - in /maven/plugins/trunk/maven-pdf-plugin/src/site: pdf.xml xdoc/examples/configuring-reports.xml xdoc/examples/configuring-reports.xml.vm

Author: vsiveton
Date: Tue Sep  1 11:45:38 2009
New Revision: 809980

URL: http://svn.apache.org/viewvc?rev=809980&view=rev
Log:
o filtering doc project.version

Added:
    maven/plugins/trunk/maven-pdf-plugin/src/site/xdoc/examples/configuring-reports.xml.vm
      - copied, changed from r809310, maven/plugins/trunk/maven-pdf-plugin/src/site/xdoc/examples/configuring-reports.xml
Removed:
    maven/plugins/trunk/maven-pdf-plugin/src/site/xdoc/examples/configuring-reports.xml
Modified:
    maven/plugins/trunk/maven-pdf-plugin/src/site/pdf.xml

Modified: maven/plugins/trunk/maven-pdf-plugin/src/site/pdf.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-pdf-plugin/src/site/pdf.xml?rev=809980&r1=809979&r2=809980&view=diff
==============================================================================
--- maven/plugins/trunk/maven-pdf-plugin/src/site/pdf.xml (original)
+++ maven/plugins/trunk/maven-pdf-plugin/src/site/pdf.xml Tue Sep  1 11:45:38 2009
@@ -32,9 +32,9 @@
 
   <toc name="Table of Contents">
     <item name="Introduction" ref="index.apt"/>
-    <item name="Usage" ref="usage.apt"/>
+    <item name="Usage" ref="usage.apt.vm"/>
     <item name="Filtering Document Descriptor" ref="examples/filtering.apt"/>
-    <item name="Configuring Reports" ref="/examples/configuring-reports.html"/>
+    <item name="Configuring Reports" ref="/examples/configuring-reports.xml.vm"/>
     <item name="Limitations" ref="limitations.apt"/>
     <item name="FAQ" ref="faq.fml"/>
   </toc>

Copied: maven/plugins/trunk/maven-pdf-plugin/src/site/xdoc/examples/configuring-reports.xml.vm (from r809310, maven/plugins/trunk/maven-pdf-plugin/src/site/xdoc/examples/configuring-reports.xml)
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-pdf-plugin/src/site/xdoc/examples/configuring-reports.xml.vm?p2=maven/plugins/trunk/maven-pdf-plugin/src/site/xdoc/examples/configuring-reports.xml.vm&p1=maven/plugins/trunk/maven-pdf-plugin/src/site/xdoc/examples/configuring-reports.xml&r1=809310&r2=809980&rev=809980&view=diff
==============================================================================
--- maven/plugins/trunk/maven-pdf-plugin/src/site/xdoc/examples/configuring-reports.xml (original)
+++ maven/plugins/trunk/maven-pdf-plugin/src/site/xdoc/examples/configuring-reports.xml.vm Tue Sep  1 11:45:38 2009
@@ -81,7 +81,8 @@
         <source><![CDATA[
 <project>
   ...
-  <profile>
+  <profiles>
+    <profile>
       <id>pdf</id>
       <reporting>
         <plugins>
@@ -92,9 +93,16 @@
               <reportSet>
                 <reports>
                   <report>cim</report>
+                  <!-- take too long time
+                  <report>dependencies</report> -->
+                  <report>dependency-convergence</report>
+                  <report>dependency-management</report>
+                  <!-- already present
+                  <report>index</report> -->
                   <report>issue-tracking</report>
                   <report>license</report>
                   <report>mailing-list</report>
+                  <report>plugin-management</report>
                   <report>plugins</report>
                   <report>project-team</report>
                   <report>scm</report>
@@ -112,11 +120,13 @@
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-pdf-plugin</artifactId>
-            <version>1.0</version>
+            <version>${project.version}</version>
           </plugin>
         </plugins>
       </build>
     </profile>
+    ...
+  </profiles>
   ...
   <project>]]></source>