This is an automated email from the ASF dual-hosted git repository. pascalschumacher pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new f357697 camel-spring-boot: make tests pass on JDK 10 f357697 is described below commit f357697d48524f62a78587cb3e3165c88c2ed439 Author: Pascal Schumacher <pascalschumac...@gmx.net> AuthorDate: Sat Apr 21 14:50:55 2018 +0200 camel-spring-boot: make tests pass on JDK 10 Use jdk9 maven profile for JDK 9 and later versions. --- components/camel-spring-boot/pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/camel-spring-boot/pom.xml b/components/camel-spring-boot/pom.xml index 3f94497..92294ca 100644 --- a/components/camel-spring-boot/pom.xml +++ b/components/camel-spring-boot/pom.xml @@ -128,9 +128,9 @@ <profiles> <profile> - <id>jdk9-build</id> + <id>jdk9+-build</id> <activation> - <jdk>9</jdk> + <jdk>[9,)</jdk> </activation> <build> <plugins> @@ -138,7 +138,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkedProcessTimeoutInSeconds>3000</forkedProcessTimeoutInSeconds> - <argLine>--add-modules java.xml.bind --add-opens java.base/java.lang=ALL-UNNAMED</argLine> + <argLine>--add-modules java.xml.bind</argLine> </configuration> </plugin> </plugins> -- To stop receiving notification emails like this one, please contact pascalschumac...@apache.org.