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 2017/09/09 20:28:57 UTC

svn commit: r1807927 - /maven/doxia/doxia-sitetools/trunk/pom.xml

Author: hboutemy
Date: Sat Sep  9 20:28:57 2017
New Revision: 1807927

URL: http://svn.apache.org/viewvc?rev=1807927&view=rev
Log:
fix Java 9 build (skipping clirr)

Modified:
    maven/doxia/doxia-sitetools/trunk/pom.xml

Modified: maven/doxia/doxia-sitetools/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-sitetools/trunk/pom.xml?rev=1807927&r1=1807926&r2=1807927&view=diff
==============================================================================
--- maven/doxia/doxia-sitetools/trunk/pom.xml (original)
+++ maven/doxia/doxia-sitetools/trunk/pom.xml Sat Sep  9 20:28:57 2017
@@ -224,6 +224,11 @@ under the License.
             </excludes>
           </configuration>
         </plugin>
+        <plugin>
+          <groupId>org.codehaus.plexus</groupId>
+          <artifactId>plexus-component-metadata</artifactId>
+          <version>1.7.1</version>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>
@@ -381,5 +386,14 @@ under the License.
         </plugins>
       </reporting>
     </profile>
+    <profile>
+      <id>jigsaw</id>
+      <activation>
+        <jdk>[1.9,)</jdk>
+      </activation>
+      <properties>
+        <clirr.skip>true</clirr.skip>
+      </properties>
+    </profile>
   </profiles>
 </project>