This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch java13 in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git
commit a5caf303eb19f13696934c4531e78c59aded9338 Author: Sylwester Lachiewicz <[email protected]> AuthorDate: Fri Jan 11 19:26:47 2019 +0100 Prepare to run ITs tests with Java 13-ea --- core-it-suite/src/test/resources/mng-1957/pom.xml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/core-it-suite/src/test/resources/mng-1957/pom.xml b/core-it-suite/src/test/resources/mng-1957/pom.xml index 6d69288..aea53b5 100644 --- a/core-it-suite/src/test/resources/mng-1957/pom.xml +++ b/core-it-suite/src/test/resources/mng-1957/pom.xml @@ -189,7 +189,16 @@ under the License. <profile> <id>test-6i</id> <activation> - <jdk>[12,)</jdk> + <jdk>[12,13)</jdk> + </activation> + <properties> + <jdkProperty6>PASSED</jdkProperty6> + </properties> + </profile> + <profile> + <id>test-6j</id> + <activation> + <jdk>[13,)</jdk> </activation> <properties> <jdkProperty6>PASSED</jdkProperty6>
