[MPOM-486] Enable autoVersionSubmodules for maven-release-plugin
diff --git a/docs/src/site/apt/index.apt.vm b/docs/src/site/apt/index.apt.vm
index 76dfb44..2bdc30d 100644
--- a/docs/src/site/apt/index.apt.vm
+++ b/docs/src/site/apt/index.apt.vm
@@ -85,9 +85,14 @@
   ** The resources plugin is set for $context.get("project.build.sourceEncoding").
     
   ** The release plugin is set, via the
-    \<useReleaseProfiles\> configuration element, to enable the
-    <<apache-release>> profile during <<<release:perform>>> execution and to disable
-    \<useReleaseProfiles\>.
+
+    *** \<useReleaseProfiles\> configuration element, to enable the<<apache-release>> profile during <<<release:perform>>> execution
+
+    *** disable \<useReleaseProfiles\>
+
+    *** enable \<autoVersionSubmodules\>
+
+    []
 
  * <<plugins>>: The plugins section configures three executions:
     
diff --git a/pom.xml b/pom.xml
index 2af0b6a..ae6895d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -294,6 +294,7 @@
           <artifactId>maven-release-plugin</artifactId>
           <version>${version.maven-release-plugin}</version>
           <configuration>
+            <autoVersionSubmodules>true</autoVersionSubmodules>
             <useReleaseProfile>false</useReleaseProfile>
             <goals>deploy</goals>
             <releaseProfiles>apache-release</releaseProfiles>