This is an automated email from the ASF dual-hosted git repository. tibordigana pushed a commit to branch SUREFIRE-1585-tibor2 in repository https://gitbox.apache.org/repos/asf/maven-surefire.git
The following commit(s) were added to refs/heads/SUREFIRE-1585-tibor2 by this push: new e0880b6 [SUREFIRE-1585] Align JUnit Platform version at runtime e0880b6 is described below commit e0880b6781f7947e8581ccfa49efc5a6a5caa8d1 Author: tibordigana <tibordig...@apache.org> AuthorDate: Thu Feb 28 22:37:23 2019 +0100 [SUREFIRE-1585] Align JUnit Platform version at runtime --- maven-failsafe-plugin/pom.xml | 5 +++++ maven-surefire-common/pom.xml | 15 --------------- maven-surefire-plugin/pom.xml | 10 +++++----- maven-surefire-report-plugin/pom.xml | 5 ----- 4 files changed, 10 insertions(+), 25 deletions(-) diff --git a/maven-failsafe-plugin/pom.xml b/maven-failsafe-plugin/pom.xml index ccf282d..31dcfbf 100644 --- a/maven-failsafe-plugin/pom.xml +++ b/maven-failsafe-plugin/pom.xml @@ -60,6 +60,11 @@ <classifier>site-source</classifier> </dependency> <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-core</artifactId> + <scope>provided</scope> + </dependency> + <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <scope>provided</scope> diff --git a/maven-surefire-common/pom.xml b/maven-surefire-common/pom.xml index 6fe1024..770642e 100644 --- a/maven-surefire-common/pom.xml +++ b/maven-surefire-common/pom.xml @@ -53,27 +53,12 @@ <scope>provided</scope> </dependency> <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-plugin-api</artifactId> - <scope>provided</scope> - </dependency> - <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> - <artifactId>maven-artifact</artifactId> - <scope>provided</scope> - </dependency> - <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-model</artifactId> - <scope>provided</scope> - </dependency> - <dependency> - <groupId>org.apache.maven</groupId> <artifactId>maven-toolchain</artifactId> </dependency> <dependency> diff --git a/maven-surefire-plugin/pom.xml b/maven-surefire-plugin/pom.xml index 7fb5b05..ac34a2b 100644 --- a/maven-surefire-plugin/pom.xml +++ b/maven-surefire-plugin/pom.xml @@ -50,14 +50,14 @@ <version>${project.version}</version> </dependency> <dependency> - <groupId>org.apache.maven.plugin-tools</groupId> - <artifactId>maven-plugin-annotations</artifactId> + <groupId>org.apache.maven</groupId> + <artifactId>maven-core</artifactId> <scope>provided</scope> </dependency> <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-core</artifactId> - <scope>test</scope> + <groupId>org.apache.maven.plugin-tools</groupId> + <artifactId>maven-plugin-annotations</artifactId> + <scope>provided</scope> </dependency> </dependencies> diff --git a/maven-surefire-report-plugin/pom.xml b/maven-surefire-report-plugin/pom.xml index 4fee9b4..18da79f 100644 --- a/maven-surefire-report-plugin/pom.xml +++ b/maven-surefire-report-plugin/pom.xml @@ -59,11 +59,6 @@ </dependency> <dependency> <groupId>org.apache.maven</groupId> - <artifactId>maven-model</artifactId> - <scope>provided</scope> - </dependency> - <dependency> - <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <!--<scope>provided</scope>--> </dependency>