0

I've recently found that poms I deal with are increasingly complicated, with submodules, multiple steps that can fail due to platform specific (non-java) related bugs, etc...

Since maven's functionality is now more sophisticated, has any tooling arrived that will allow us to debug / step through a maven build, mojo by mojo, or for example, module by module? At the moment, I usually resort to running builds and scanning, by eye, for errors in the rather verbose output of the standard mvn incantations.

jayunit100
  • 17,388
  • 22
  • 92
  • 167

1 Answers1

0

mvn "your parameters list" | grep -i "your error phrase" ? That's what I'm using ...

agodinhost
  • 381
  • 4
  • 16
  • well certainly theres always grep. but, im talking about visualizeing complicated submodule dependencies and visualizing the non-trivial information in effective poms, etc.. – jayunit100 Jul 10 '13 at 23:36
  • mvn dependency:tree -Dincludes=[groupId]:[artifactId]:[type]:[version] -Dexcludes=[groupId]:[artifactId]:[type]:[version] ? It would help to filter in your undesired classes ... – agodinhost Jul 12 '13 at 18:49