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/10/05 23:05:59 UTC

svn commit: r1811277 - /maven/shared/trunk/maven-reporting-impl/pom.xml

Author: hboutemy
Date: Thu Oct  5 23:05:59 2017
New Revision: 1811277

URL: http://svn.apache.org/viewvc?rev=1811277&view=rev
Log:
fixed Java 9 compatibility

Modified:
    maven/shared/trunk/maven-reporting-impl/pom.xml

Modified: maven/shared/trunk/maven-reporting-impl/pom.xml
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-reporting-impl/pom.xml?rev=1811277&r1=1811276&r2=1811277&view=diff
==============================================================================
--- maven/shared/trunk/maven-reporting-impl/pom.xml (original)
+++ maven/shared/trunk/maven-reporting-impl/pom.xml Thu Oct  5 23:05:59 2017
@@ -115,6 +115,11 @@
       <artifactId>doxia-site-renderer</artifactId>
       <version>${doxiaSitetoolsVersion}</version>
     </dependency>
+    <dependency><!-- TODO remove dependency when upgrading Doxia Sitetools to 1.7.5 -->
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+      <version>2.6</version>
+    </dependency>
 
     <!-- misc -->
     <dependency>
@@ -148,6 +153,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-invoker-plugin</artifactId>
+        <version>3.0.1</version><!-- TODO remove version when upgrading parent pom -->
         <configuration>
           <debug>true</debug>
           <projectsDirectory>src/it</projectsDirectory>
@@ -193,39 +199,5 @@
         </plugins>
       </reporting>
     </profile>
-
-    <profile>
-      <id>jigsaw</id>
-      <activation>
-        <jdk>[9,)</jdk>
-      </activation>
-      <pluginRepositories>
-        <pluginRepository>
-          <id>oss-jfrog</id>
-          <url>https://oss.jfrog.org/oss-snapshot-local/</url>
-          <releases>
-            <enabled>false</enabled>
-          </releases>
-          <snapshots>
-            <enabled>true</enabled>
-          </snapshots>
-        </pluginRepository>
-      </pluginRepositories>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-invoker-plugin</artifactId>
-            <dependencies>
-              <dependency>
-                <groupId>org.codehaus.groovy</groupId>
-                <artifactId>groovy-all</artifactId>
-                <version>2.4.8-SNAPSHOT</version>
-              </dependency>
-            </dependencies>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
   </profiles>
 </project>