Maven 3.3.1 Config Error in IntelliJ Idea 14

2019-01-22 01:48发布

I got the maven .tar file from http://maven.apache.org/download.cgi, and installed it to the path /usr/local/. I run the mvn -version command in the new window, the output is correct. Below is my .bash_profile in my home directory:

JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk7/Contents/Home  
CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar  
PATH=$JAVA_HOME/bin:$PATH:  
export JAVA_HOME  
export CLASSPATH  
export PATH  
M2_HOME=/usr/local/maven  
M2=$M2_HOME/bin  
PATH=$M2:$PATH  
export M2_HOME    
export M2  
export PATH

and the mvn -version is below :

BianFranks-MacBook-Pro:~ Frank$ mvn -version  
Apache Maven 3.3.1 (cab6659f9874fa96462afef40fcf6bc033d58c1c; 2015-03-    14T04:10:27+08:00)  
Maven home: /usr/local/maven  
Java version: 1.7.0_72, vendor: Oracle Corporation  
Java home: /Library/Java/JavaVirtualMachines/jdk7/Contents/Home/jre  
Default locale: en_US, platform encoding: UTF-8  
OS name: "mac os x", version: "10.10.2", arch: "x86_64", family: "mac"

But the tips occurred when cleaning the module via Maven in Intellij IDEA 14:

/Library/Java/JavaVirtualMachines/jdk7/Contents/Home/bin/java -Dmaven.home=/usr/local/maven -Dclassworlds.conf=/usr/local/maven/bin/m2.conf -Didea.launcher.port=7532 "-Didea.launcher.bin.path=/Applications/IntelliJ IDEA 14.app/Contents/bin" -Dfile.encoding=UTF-8 -classpath "/usr/local/maven/boot/plexus-classworlds-2.5.2.jar:/Applications/IntelliJ IDEA 14.app/Contents/lib/idea_rt.jar" com.intellij.rt.execution.application.AppMain org.codehaus.classworlds.Launcher -Didea.version=14.0.2 clean  
-Dmaven.multiModuleProjectDirectory system propery is not set. Check   $M2_HOME environment variable and mvn script match.   
Process finished with exit code 1

the system property is not set, but I don't know how to set it...

8条回答
地球回转人心会变
2楼-- · 2019-01-22 02:12

If the variant from previous comments will not work:

-Dmaven.multiModuleProjectDirectory=project root

you can try this with quotes:

-Dmaven.multiModuleProjectDirectory="project root"

This is exactly what helped me.

查看更多
仙女界的扛把子
3楼-- · 2019-01-22 02:16
  1. Goto Run Configuration under JRE tab
  2. type(in VM argument text field) "-Dmaven.multiModuleProjectDirectory="
查看更多
做个烂人
4楼-- · 2019-01-22 02:20

If you don't rely on an external IDE, remember to put this in MAVEN_OPTS, like so (Linux)

export MAVEN_OPTS=-Dmaven.multiModuleProjectDirectory=<your path> 

From Apache Maven's documentation, it's good to learn about this variable:

This variable contains parameters used to start up the JVM running Maven and can be used to supply additional options to globally to Maven. E.g. JVM memory settings could be defined with the value -Xms256m -Xmx512m.

You can refer to this link https://maven.apache.org/configure.html

查看更多
欢心
5楼-- · 2019-01-22 02:23

This thread is important thread and very useful so I added this solution to it. I added this line to maven runner and it works with me

    -Dmaven.multiModuleProjectDirectory=$M2_HOME

Noting that, M2_HOME is defined in the environment variables for maven home in case of windows OS.

查看更多
来,给爷笑一个
6楼-- · 2019-01-22 02:24

Open up the IntelliJ settings dialog.

In Maven-->Runner options set a following VM option: -Dmaven.multiModuleProjectDirectory=project root

查看更多
仙女界的扛把子
7楼-- · 2019-01-22 02:24

Got the same with Luna Service Release 2 (4.4.2), following are the steps that i followed:

  1. Goto - Run Configuration - under JRE tab - type -Dmaven.multiModuleProjectDirectory=

This solution was provided by sheltem Mar...Thanks

查看更多
登录 后发表回答