This is an automated email from the ASF dual-hosted git repository. tibordigana pushed a commit to branch 1330 in repository https://gitbox.apache.org/repos/asf/maven-surefire.git
commit f60dffee88fde0eced0f567a122e527080090ab4 Author: Christian Stein <sormu...@gmail.com> AuthorDate: Wed May 2 23:17:53 2018 +0200 Rename JUnitPlattformProviderInfo to JUnitPlatformProviderInfo --- .../java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java index dcfabae..414e084 100644 --- a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java +++ b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java @@ -1024,7 +1024,7 @@ public abstract class AbstractSurefireMojo new TestNgProviderInfo( getTestNgArtifact() ), new JUnitCoreProviderInfo( getJunitArtifact(), junitDepArtifact ), new JUnit4ProviderInfo( getJunitArtifact(), junitDepArtifact ), - new JUnitPlattformProviderInfo( getJunitArtifact() ), + new JUnitPlatformProviderInfo( getJunitArtifact() ), new JUnit3ProviderInfo() ) .resolve(); } @@ -2884,12 +2884,12 @@ public abstract class AbstractSurefireMojo } - final class JUnitPlattformProviderInfo + final class JUnitPlatformProviderInfo implements ProviderInfo { private final Artifact junitArtifact; - JUnitPlattformProviderInfo( Artifact junitArtifact ) + JUnitPlatformProviderInfo( Artifact junitArtifact ) { this.junitArtifact = junitArtifact; } -- To stop receiving notification emails like this one, please contact tibordig...@apache.org.