GuardianX
GuardianX

Reputation: 513

IntelliJ cannot find Maven M2_HOME environment variable

I'm trying to make my first step with Maven system. But I cannot understand if I should install it separately or if it comes built-in with IntelliJ 13 Community Edition? My system is Windows 7.

Upvotes: 0

Views: 805

Answers (2)

renesis
renesis

Reputation: 26

Maven does not come bundled with Intellij. You need to install the version of Maven you'd like to use on your computer.

Intellij has a Maven plugin, which requires that you either set M2_HOME or supply it with the location of your Maven install.

Upvotes: 1

khmarbaise
khmarbaise

Reputation: 97389

First you should it install it separately cause you will need it on command line. Furthermore it's best to understand maven on command line first and than make the integration step into Maven with an IDE of your choice.

Upvotes: 1

Related Questions