You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by lt...@apache.org on 2011/03/20 16:50:01 UTC

svn commit: r1083475 - in /maven/plugins/branches/maven-site-plugin-3.x: ./ src/site/apt/examples/moduleexcludes.apt.vm

Author: ltheussl
Date: Sun Mar 20 15:50:01 2011
New Revision: 1083475

URL: http://svn.apache.org/viewvc?rev=1083475&view=rev
Log:
merge r1083473 from trunk

Modified:
    maven/plugins/branches/maven-site-plugin-3.x/   (props changed)
    maven/plugins/branches/maven-site-plugin-3.x/src/site/apt/examples/moduleexcludes.apt.vm

Propchange: maven/plugins/branches/maven-site-plugin-3.x/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sun Mar 20 15:50:01 2011
@@ -1 +1 @@
-/maven/plugins/trunk/maven-site-plugin:801155,801171,801470,806898-806906,807943-808180,809252,810298,884137,886844,886847,890094,890124,891014,891688,920027,920041,942622,943455,944145,950463,956681,984466,984960,984991,984996,1029307,1033379,1037476,1039137,1039143,1039748-1039749,1049020,1051139-1051449,1055019,1055033,1055047,1055089,1060289,1063639,1064626,1065576,1065582,1066038,1067103,1067120,1070079-1070080,1070100,1070104,1074118,1075018,1075782,1075810,1075995,1076167,1076195,1077911,1077924,1078235,1079474,1079529,1079698,1080781,1081676,1081837,1081887,1082091,1082242,1082274,1082877,1083147,1083251
+/maven/plugins/trunk/maven-site-plugin:801155,801171,801470,806898-806906,807943-808180,809252,810298,884137,886844,886847,890094,890124,891014,891688,920027,920041,942622,943455,944145,950463,956681,984466,984960,984991,984996,1029307,1033379,1037476,1039137,1039143,1039748-1039749,1049020,1051139-1051449,1055019,1055033,1055047,1055089,1060289,1063639,1064626,1065576,1065582,1066038,1067103,1067120,1070079-1070080,1070100,1070104,1074118,1075018,1075782,1075810,1075995,1076167,1076195,1077911,1077924,1078235,1079474,1079529,1079698,1080781,1081676,1081837,1081887,1082091,1082242,1082274,1082877,1083147,1083251,1083473

Modified: maven/plugins/branches/maven-site-plugin-3.x/src/site/apt/examples/moduleexcludes.apt.vm
URL: http://svn.apache.org/viewvc/maven/plugins/branches/maven-site-plugin-3.x/src/site/apt/examples/moduleexcludes.apt.vm?rev=1083475&r1=1083474&r2=1083475&view=diff
==============================================================================
--- maven/plugins/branches/maven-site-plugin-3.x/src/site/apt/examples/moduleexcludes.apt.vm (original)
+++ maven/plugins/branches/maven-site-plugin-3.x/src/site/apt/examples/moduleexcludes.apt.vm Sun Mar 20 15:50:01 2011
@@ -29,7 +29,7 @@
 
 Excluding Document Formats
 
-  To exclude specific document formats from the generated site, you can use the <<<excludeModules>>> parameter.
+  To exclude specific document formats from the generated site, you can use the <<<moduleExcludes>>> parameter.
 
   For example, you have the following site content in your POM
 
@@ -59,7 +59,9 @@ Module1
         <artifactId>maven-site-plugin</artifactId>
         <version>${project.version}</version>
         <configuration>
-          <excludeModules>fml</excludeModules>
+          <moduleExcludes>
+            <fml>*.fml</fml>
+          </moduleExcludes>
         </configuration>
       </plugin>
     </plugins>
@@ -68,4 +70,7 @@ Module1
 </project>
 +-----+
 
-  You will see that no <<<sample-fml.html>>> will be present in the generated site.
\ No newline at end of file
+  You will see that no <<<sample-fml.html>>> will be present in the generated site.
+
+  See the documentation of the {{{../site-mojo.html#moduleExcludes}moduleExcludes}}
+  Mojo parameter for more details.
\ No newline at end of file