You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2012/12/03 00:47:57 UTC

svn commit: r1416309 - /maven/plugins/trunk/maven-site-plugin/src/site/apt/examples/configuring-reports.apt

Author: hboutemy
Date: Sun Dec  2 23:47:57 2012
New Revision: 1416309

URL: http://svn.apache.org/viewvc?rev=1416309&view=rev
Log:
fixed indentation

Modified:
    maven/plugins/trunk/maven-site-plugin/src/site/apt/examples/configuring-reports.apt

Modified: maven/plugins/trunk/maven-site-plugin/src/site/apt/examples/configuring-reports.apt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/site/apt/examples/configuring-reports.apt?rev=1416309&r1=1416308&r2=1416309&view=diff
==============================================================================
--- maven/plugins/trunk/maven-site-plugin/src/site/apt/examples/configuring-reports.apt (original)
+++ maven/plugins/trunk/maven-site-plugin/src/site/apt/examples/configuring-reports.apt Sun Dec  2 23:47:57 2012
@@ -117,26 +117,26 @@ Selecting Reports from a Plugin: Configu
           <reportSet>
         </reportSets>
       </plugin>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-javadoc-plugin</artifactId>
-            <version>2.9</version>
-            <reportSets>
-              <reportSet><!-- by default, id = "default" -->
-                <reports><!-- select non-aggregate reports -->
-                  <report>javadoc</report>
-                  <report>test-javadoc</report>
-                </reports>
-              </reportSet>
-              <reportSet><!-- aggregate reportSet, to define in poms having modules -->
-                <id>aggregate</id>
-                <inherited>false</inherited><!-- don't run aggregate in child modules -->
-                <reports>
-                  <report>aggregate</report>
-                </reports>
-              </reportSet>
-            </reportSets>
-          </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.9</version>
+        <reportSets>
+          <reportSet><!-- by default, id = "default" -->
+            <reports><!-- select non-aggregate reports -->
+              <report>javadoc</report>
+              <report>test-javadoc</report>
+            </reports>
+          </reportSet>
+          <reportSet><!-- aggregate reportSet, to define in poms having modules -->
+            <id>aggregate</id>
+            <inherited>false</inherited><!-- don't run aggregate in child modules -->
+            <reports>
+              <report>aggregate</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
     </plugins>
   </reporting>
   ...