IntelliJ - is there a good Maven plugin?

I'm trying IntelliJ 12, and one thing really disappoints ... is maven integration.

I am missing the following functions:

  • effective kind of pom
  • search for a specific hierarchy of dependencies jar trough
  • The classpath should be obtained directly from maven pom, and not in some crazy randomly unknown way. I have a case where some dependencies are simply omitted and I see them when I run mvn dependency:analyze
  • pom.xml changes sometimes are not reflected in the project (the classpath does not change or has an old dependency and a new one), also when I click "reimport"

Does anyone know any other maven plugin? Something like m2e would be very nice;)

+4
source share
3 answers

I just switched from eclipse, and my idea was that for a single technology there are many different plugins, but in this case it is not closed.

-4
source

As @tieTYT noted, a Dependency popup window appears ( Ctrl + Alt + U , Ctrl + F ).

An idea can automatically detect changes made to your pom.xml and apply them to a project. To enable this, press Ctrl + Shift + A , enter "maven auto", select "Import", check the box "Import Maven project automatically";

+1
source

See fooobar.com/questions/275157 / ... for my answer. This at least provides a relatively simple way to get an effective pom.

0
source

All Articles