[
https://issues.apache.org/jira/browse/SUREFIRE-1547?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17461686#comment-17461686
]
Slawomir Jaranowski commented on SUREFIRE-1547:
-----------------------------------------------
Can you check your issue with the latest version 3.0.0-M5?
> There should be no extensions on excludes, while doc examples show extensions.
> ------------------------------------------------------------------------------
>
> Key: SUREFIRE-1547
> URL: https://issues.apache.org/jira/browse/SUREFIRE-1547
> Project: Maven Surefire
> Issue Type: Bug
> Reporter: Tommy Svensson
> Priority: Major
>
> I ran into a problem, and found the solution:
>
> My pom started out like this:
>
>
> {code:java}
> <plugin>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-surefire-plugin</artifactId>
> <version>2.22.0</version>
> <configuration>
> <excludes>
> <exclude>**/RunBackendTest.groovy</exclude>
> </excludes>
> </configuration>
> </plugin>
> {code}
> This didn’t work in any way!
>
> I copied the pom plugin configuration from this page:
> [https://maven.apache.org/surefire/maven-surefire-plugin/examples/inclusion-exclusion.html]
>
> But I finally solved the problem. My pom now looks like this:
>
>
> {code:java}
> <plugin>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-surefire-plugin</artifactId>
> <version>2.22.0</version>
> <configuration>
> <excludes>
> <exclude>**/RunBackendTest</exclude>
> </excludes>
> </configuration>
> </plugin> {code}
> See the difference ? No extension on test file! But the above referenced
> maven documentation examples do include the extensions, which clearly does
> not work.
--
This message was sent by Atlassian Jira
(v8.20.1#820001)