0

Each time I run mvn appengine:devserver the JUnit tests are re-run. Is there a way to avoid this testing phase? I thought it was AppEngine specific but looking at the answers I see it may not be.

supercobra
  • 15,810
  • 9
  • 45
  • 51

1 Answers1

5

Have you tried:

mvn appengine:devserver -Dmaven.test.skip=true

which skips building the test artifacts.

Or

mvn appengine:devserver -DskipTests

which produces test artifact, but the tests don't run.

user987339
  • 10,519
  • 8
  • 40
  • 45