This is an automated email from the ASF dual-hosted git repository. khmarbaise pushed a commit to branch MRRESOURCES-104 in repository https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git
The following commit(s) were added to refs/heads/MRRESOURCES-104 by this push: new 22d042b Upgraded minimum target/source for some parts cause JDK 9 does not support target 5 anymore. 22d042b is described below commit 22d042b2d10d677ce87a46cc5f7f6cbeeb99a6d3 Author: Karl Heinz Marbaise <khmarba...@apache.org> AuthorDate: Sat Apr 7 22:34:10 2018 +0200 Upgraded minimum target/source for some parts cause JDK 9 does not support target 5 anymore. --- .gitignore | 1 + src/it/resources/supplemental-artifact/pom.xml | 6 +++++- src/it/resources/supplemental-artifact/resource-projects/pom.xml | 5 +++++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f79c928..7495d7e 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ out/ /bootstrap /dependencies.xml .java-version +.checkstyle diff --git a/src/it/resources/supplemental-artifact/pom.xml b/src/it/resources/supplemental-artifact/pom.xml index b20f438..f6976ba 100644 --- a/src/it/resources/supplemental-artifact/pom.xml +++ b/src/it/resources/supplemental-artifact/pom.xml @@ -39,7 +39,11 @@ under the License. <version>1</version> </dependency> </dependencies> - + + <properties> + <maven.compiler.source>1.6</maven.compiler.source> + <maven.compiler.target>1.6</maven.compiler.target> + </properties> <build> <plugins> <plugin> diff --git a/src/it/resources/supplemental-artifact/resource-projects/pom.xml b/src/it/resources/supplemental-artifact/resource-projects/pom.xml index a1a4dbc..7dfc7c1 100644 --- a/src/it/resources/supplemental-artifact/resource-projects/pom.xml +++ b/src/it/resources/supplemental-artifact/resource-projects/pom.xml @@ -24,6 +24,11 @@ under the License. <version>1</version> <packaging>pom</packaging> + <properties> + <maven.compiler.source>1.6</maven.compiler.source> + <maven.compiler.target>1.6</maven.compiler.target> + </properties> + <modules> <module>supplemental-models</module> <module>deficient-dep</module> -- To stop receiving notification emails like this one, please contact khmarba...@apache.org.