You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2020/04/21 23:24:23 UTC

[maven-surefire] 04/10: fixed wrong use of classpathDependencyExcludes

This is an automated email from the ASF dual-hosted git repository.

tibordigana pushed a commit to branch pull/285
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git

commit 513858a33632c18a13af44387003630b4c98e07d
Author: tibordigana <ti...@apache.org>
AuthorDate: Sun Apr 19 12:36:30 2020 +0200

    fixed wrong use of classpathDependencyExcludes
---
 surefire-providers/common-junit48/pom.xml | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/surefire-providers/common-junit48/pom.xml b/surefire-providers/common-junit48/pom.xml
index a011654..72b6530 100644
--- a/surefire-providers/common-junit48/pom.xml
+++ b/surefire-providers/common-junit48/pom.xml
@@ -139,7 +139,9 @@
                         </goals>
                         <configuration>
                             <test>GroupMatcherCategoryFilterPreJUnit412Test$JUnit4SuiteTest</test>
-                            <classpathDependencyExcludes>junit:junit</classpathDependencyExcludes>
+                            <classpathDependencyExcludes>
+                                <classpathDependencyExclude>junit:junit</classpathDependencyExclude>
+                            </classpathDependencyExcludes>
                             <additionalClasspathElements>
                                 <additionalClasspathElement>${project.build.directory}/endorsed-test/junit-4.11.jar</additionalClasspathElement>
                             </additionalClasspathElements>
@@ -153,7 +155,9 @@
                         </goals>
                         <configuration>
                             <test>GroupMatcherCategoryFilterTest$JUnit4SuiteTest</test>
-                            <classpathDependencyExcludes>junit:junit</classpathDependencyExcludes>
+                            <classpathDependencyExcludes>
+                                <classpathDependencyExclude>junit:junit</classpathDependencyExclude>
+                            </classpathDependencyExcludes>
                             <additionalClasspathElements>
                                 <additionalClasspathElement>${project.build.directory}/endorsed-test/junit-4.12.jar</additionalClasspathElement>
                             </additionalClasspathElements>