maven初体验
- maven配置(本地仓库配置和本地设置、以及在eclipse中的配置)
下载完成之后,创建环境变量M2_HOME=E:\apache-maven-3.3.9
也就是指向安装目录。在path环境变量中添加%M2_HOME%\bin
也就是指向安装目录。在path环境变量中添加
在eclipse中Window->Preference->Maven4MyEclipse中设置Installationsd到达安装目录,User Settins中设置配置文件在E:\maven-repo\settings.xml
- 错误
-Dmaven.multiModuleProjectDirectory maven myeclipse
或者说是错误Check $M2_HOME environment variable and mvn script match.
,解决方法是:
1 | 可以设一个环境变量M2_HOME指向你的maven安装目录 |
具体可以参考路径
在这个路径下还有的关于创建maven工程的方法
mvn install
报错:1
2[ERROR] Failure executing javac, but could not parse the error:
[ERROR] javac: 无效的目标版本: 1.7原因本地path下配置的是jdk1.6,但是pom中配置的jdk1.7:
1
2
3
4
5
6
7
8
9
10
11
12
13<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>将其中的source和target标签改成1.6就行了。