25

I have a maven project that was generated by Spring Roo. Now I am not sure whether I need all of its dependencies.

Is there a tool to automate the process of detecting stale dependencies?

er4z0r
  • 4,711
  • 8
  • 42
  • 62

1 Answers1

20

The Maven Dependency plugin should be able to help, especially the analyze options.

davek
  • 22,499
  • 9
  • 75
  • 95
  • 3
    Mind that this plugin also generates libraries that are used in the project. I found a few libraries that are used during test goal but maven prints them out as unused. – Damian Mar 15 '15 at 16:27