Tommy Svensson created MNGSITE-346: -------------------------------------- Summary: There should be no extensions on excludes, while doc examples show extensions. Key: MNGSITE-346 URL: https://issues.apache.org/jira/browse/MNGSITE-346 Project: Maven Project Web Site Issue Type: Bug Reporter: Tommy Svensson
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 (v7.6.3#76005)