aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcpovirk <cpovirk@google.com>2019-10-03 12:19:00 -0700
committerChris Povirk <beigetangerine@gmail.com>2019-10-04 12:12:19 -0400
commitd4339f8f3de2a2bb903d8b1149e7d27642fda833 (patch)
treea1c870132d51967decafb2a3004782c537e69a2a
parenta76d68fdcb08c9f5bde0ad2d143d0e8682f807eb (diff)
downloadjimfs-d4339f8f3de2a2bb903d8b1149e7d27642fda833.tar.gz
Update versions of some plugins and a dependency to prepare for Java 11.
- We may want an ICU4J new enough to contain an Automatic-Module-Name. - Our old maven-surefire-plugin breaks with NullPointerException with JDK10+: https://bugzilla.redhat.com/show_bug.cgi?id=1572708 - Our old maven-compiler-plugin breaks with JDK11: https://github.com/google/error-prone/issues/1136#issuecomment-427816741 (I don't have the error message handy anymore.) RELNOTES=n/a ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=272714574
-rw-r--r--pom.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 32e13bc..1d31bbd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -103,7 +103,7 @@
<dependency>
<groupId>com.ibm.icu</groupId>
<artifactId>icu4j</artifactId>
- <version>61.1</version>
+ <version>65.1</version>
</dependency>
<!-- Compile-time dependencies -->
@@ -150,7 +150,7 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
- <version>3.7.0</version>
+ <version>3.8.0</version>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
@@ -165,6 +165,10 @@
<version>1.6</version>
</plugin>
<plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>3.0.0-M3</version>
+ </plugin>
+ <plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.5.0</version>