Browse Source

Update light-4j's compiler and error prone versions (#3111)

This makes light-4j pass on Java 9.  Without this, it fails.  I didn't
try to narrow down which one of the three dependencies that I updated was
the source of the problem.
Michael Hixson 7 years ago
parent
commit
27c6725096
1 changed files with 4 additions and 4 deletions
  1. 4 4
      frameworks/Java/light-java/pom.xml

+ 4 - 4
frameworks/Java/light-java/pom.xml

@@ -175,7 +175,7 @@
             <plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
                 <artifactId>maven-compiler-plugin</artifactId>
-                <version>3.3</version>
+                <version>3.7.0</version>
                 <configuration>
                 <configuration>
                     <compilerId>javac-with-errorprone</compilerId>
                     <compilerId>javac-with-errorprone</compilerId>
                     <showWarnings>true</showWarnings>
                     <showWarnings>true</showWarnings>
@@ -193,14 +193,14 @@
                     <dependency>
                     <dependency>
                         <groupId>org.codehaus.plexus</groupId>
                         <groupId>org.codehaus.plexus</groupId>
                         <artifactId>plexus-compiler-javac-errorprone</artifactId>
                         <artifactId>plexus-compiler-javac-errorprone</artifactId>
-                        <version>2.8</version>
+                        <version>2.8.2</version>
                     </dependency>
                     </dependency>
                     <!-- override plexus-compiler-javac-errorprone's dependency on
                     <!-- override plexus-compiler-javac-errorprone's dependency on
                          Error Prone with the latest version -->
                          Error Prone with the latest version -->
                     <dependency>
                     <dependency>
                         <groupId>com.google.errorprone</groupId>
                         <groupId>com.google.errorprone</groupId>
                         <artifactId>error_prone_core</artifactId>
                         <artifactId>error_prone_core</artifactId>
-                        <version>2.0.15</version>
+                        <version>2.1.3</version>
                     </dependency>
                     </dependency>
                 </dependencies>
                 </dependencies>
             </plugin>
             </plugin>
@@ -227,7 +227,7 @@
         									maven-compiler-plugin
         									maven-compiler-plugin
         								</artifactId>
         								</artifactId>
         								<versionRange>
         								<versionRange>
-        									[3.3,)
+        									[3.7.0,)
         								</versionRange>
         								</versionRange>
         								<goals>
         								<goals>
         									<goal>compile</goal>
         									<goal>compile</goal>