2

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.

user2407798
  • 21
  • 1
  • 2

1 Answers1

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
  • 1
    or use `skip test` http://maven.apache.org/surefire/maven-surefire-plugin/examples/skipping-test.html – Bill May 22 '13 at 03:04