You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2011/08/08 17:33:20 UTC

svn commit: r1154993 - /maven/plugins/trunk/maven-javadoc-plugin/pom.xml

Author: olamy
Date: Mon Aug  8 15:33:20 2011
New Revision: 1154993

URL: http://svn.apache.org/viewvc?rev=1154993&view=rev
Log:
run its 1.6 required when 1.6 is availanle

Modified:
    maven/plugins/trunk/maven-javadoc-plugin/pom.xml

Modified: maven/plugins/trunk/maven-javadoc-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-javadoc-plugin/pom.xml?rev=1154993&r1=1154992&r2=1154993&view=diff
==============================================================================
--- maven/plugins/trunk/maven-javadoc-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-javadoc-plugin/pom.xml Mon Aug  8 15:33:20 2011
@@ -498,5 +498,24 @@ under the License.
         </plugins>
       </build>
     </profile>
+  <profile>
+    <id>doclava</id>
+    <activation>
+      <jdk>1.6</jdk>
+    </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-invoker-plugin</artifactId>
+            <configuration>
+              <pomIncludes combine.children="append">
+                <pomInclude>additionnal-dependencies*/pom.xml</pomInclude>
+              </pomIncludes>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
   </profiles>
 </project>