testng-eclipse icon indicating copy to clipboard operation
testng-eclipse copied to clipboard

the configuration is always loaded even the maven-surefire-plugin is configured as skipTests=true

Open missedone opened this issue 8 years ago • 0 comments

in my case, I have both maven-surefire-plugin and maven-failsafe-plugin in my project, maven-surefire-plugin is configured as skipTests=true:

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <skipTests>true</skipTests>
                </configuration>
            </plugin>

but this disabled surefire configuration is always used, though it's expected to use maven-failsafe-plugin

Plugin Version

6.9.11

Expected behaviour

The Dependency Management tool for your project

  • [x] Maven
  • [ ] Gradle
  • [ ] Ant
  • [ ] Eclipse Buildpath (aka. Use "TestNG Library" for your project in Eclipse)

Operating System

  • [ ] Windows
  • [ ] Linux
  • [x] OSX

missedone avatar May 03 '17 06:05 missedone