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 1dc72cf Camel-Wordpress: Make tests pass on Java 9 and 10 by adding the java.xml.bind module to surefire new 91bddc2 Merge branch 'master' of https://gitbox.apache.org/repos/asf/camel 1dc72cf is described below commit 1dc72cf3f88fe5e8e707558411fa8ead0dc43838 Author: Pascal Schumacher <pascalschumac...@gmx.net> AuthorDate: Thu May 10 11:37:48 2018 +0200 Camel-Wordpress: Make tests pass on Java 9 and 10 by adding the java.xml.bind module to surefire --- components/camel-wordpress/pom.xml | 43 +++++++++++++++++++++++++++----------- 1 file changed, 31 insertions(+), 12 deletions(-) diff --git a/components/camel-wordpress/pom.xml b/components/camel-wordpress/pom.xml index 600cd38..cba8c8f 100644 --- a/components/camel-wordpress/pom.xml +++ b/components/camel-wordpress/pom.xml @@ -1,20 +1,20 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with - the License. You may obtain a copy of the License at + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" @@ -125,4 +125,23 @@ </dependency> </dependencies> + <profiles> + <profile> + <id>jdk9+-build</id> + <activation> + <jdk>[9,)</jdk> + </activation> + <build> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <argLine>--add-modules java.xml.bind</argLine> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> + </project> -- To stop receiving notification emails like this one, please contact pascalschumac...@apache.org.