This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch MINVOKER-285 in repository https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git
commit cf804ef311d876040ababd1cec406cddcc179260 Author: Slawomir Jaranowski <[email protected]> AuthorDate: Tue Nov 30 19:14:10 2021 +0100 [MINVOKER-285] exclude additional tests frameworks provided by groovy additional tests framework provided by groovy can cause conflict with currently used test framework in project --- pom.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/pom.xml b/pom.xml index 866c7b4..99cff2c 100644 --- a/pom.xml +++ b/pom.xml @@ -215,6 +215,20 @@ under the License. <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-groovysh</artifactId> </exclusion> + <!-- MINVOKER-285 - exclude additional tests frameworks --> + <exclusion> + <groupId>org.codehaus.groovy</groupId> + <artifactId>groovy-test</artifactId> + </exclusion> + <exclusion> + <groupId>org.codehaus.groovy</groupId> + <artifactId>groovy-test-junit5</artifactId> + </exclusion> + <exclusion> + <groupId>org.codehaus.groovy</groupId> + <artifactId>groovy-testng</artifactId> + </exclusion> + <!-- /MINVOKER-285 --> </exclusions> </dependency>
