[java-parent-project] branch maint-7 updated: JPAR-103 - support Java 10
Ian Young
ian at iay.org.uk
Thu Mar 15 10:12:30 EDT 2018
This is an automated email from the git hooks/post-receive script.
iay pushed a commit to branch maint-7
in repository java-parent-project.
View the commit online:
http://git.shibboleth.net/view/?p=java-parent-project.git;a=commit;h=f1a4848fdd0d76844884e1348eb8d627e7c02980
The following commit(s) were added to refs/heads/maint-7 by this push:
new f1a4848 JPAR-103 - support Java 10
f1a4848 is described below
commit f1a4848fdd0d76844884e1348eb8d627e7c02980
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Thu Mar 15 13:47:07 2018 +0000
JPAR-103 - support Java 10
---
pom.xml | 27 +++++++++++++--------------
1 file changed, 13 insertions(+), 14 deletions(-)
diff --git a/pom.xml b/pom.xml
index dec5f83..a363244 100644
--- a/pom.xml
+++ b/pom.xml
@@ -559,6 +559,13 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-lang3</artifactId>
+ <version>3.7</version>
+ </dependency>
+ </dependencies>
<configuration>
<links>
<link>http://docs.oracle.com/javaee/5/api/</link>
@@ -633,7 +640,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
- <version>3.6</version>
+ <version>3.7</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
@@ -650,7 +657,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
- <version>2.20.1</version>
+ <version>2.21.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -1057,25 +1064,17 @@
</profile>
<!--
- The following profile allows tests to run under Java 9 by
- sidestepping an issue in the Surefire plugin in which it
- always explicitly adds the java.se.ee module. This
- conflicts with other modules, as described here:
-
- https://issues.apache.org/jira/browse/SUREFIRE-1424
-
- The workround is to provide an explicit add-modules option so that
- Surefire's default is not put in place.
+ The following profile allows tests to run under Java 9 and 10.
- In addition, some of our dependencies do currently require the
+ At present, some of our dependencies require the
java.xml.bind module. This is something we will need to address
long term in a better way, as that module is deprecated and
- will be removed from the JRE at some future time.
+ will be removed from the JRE in Java 11.
-->
<profile>
<id>jdk9-surefire-modules</id>
<activation>
- <jdk>9</jdk>
+ <jdk>[9,)</jdk>
</activation>
<build>
<plugins>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list