2

Does anybody know of any reason why some of my projects are marked as SKIPPED at the end of a successful maven build?

please note that the 'skip chain' always starts with my web project which includes the following features:

  • jspc-maven-plugin
  • war plugin with overlay
  • maven-dependency-plugin
Guy Segev
  • 41
  • 5
  • It seems as though the web project build commences and at some point during the jsp compilation its discarded, the overall build process is marked as successful and the web project as skipped. – Guy Segev Mar 25 '12 at 16:43

1 Answers1

0

It could be due to OutOfMemoryError's inside Maven. We had similar problem with Maven skipping half of the modules. Increasing memory for Maven process itself solved the issue. I don't know if it is specific to some particular plugin behaving bad or to the Maven core.

Ivan Dubrov
  • 4,778
  • 2
  • 29
  • 41