Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.5-r682619-maestro-2.0.0:test (default-test) on project ms61-webservice-xxxx: There are test failures. what does it mean and how to resolve it. I am doing maven build for the first time.
Asked
Active
Viewed 2,657 times
2
-
I had a similar problem, my answer here: http://stackoverflow.com/a/41666587/2230045 – Spenhouet Jan 15 '17 at 21:37
1 Answers
0
It means the build failed because you have failing tests. Resolve it by fixing the code so the tests pass.

Ryan Stewart
- 126,015
- 21
- 180
- 199
-
1or use `skip test` http://maven.apache.org/surefire/maven-surefire-plugin/examples/skipping-test.html – Bill May 22 '13 at 03:04