其他问题
1、Mac中Maven的setting.xml文件在哪?
2、如何将项目中WEB-INF/lib目录下的jar加入编译环境?
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>utf-8</encoding>
<compilerArguments>
<!--将lib下的文件包含进编译目录-->
<extdirs>${project.basedir}/src/main/webapp/WEB-INF/lib</extdirs>
</compilerArguments>
</configuration>
</plugin>3、使用maven运行Java main的2种方式
4、如何删除仓库中下载失败的.lastUpdated文件?
.lastUpdated文件?5、properties文件采用${xxx}赋值,真正的值是配置在pom的profile中,但是未生效?
${xxx}赋值,真正的值是配置在pom的profile中,但是未生效?6、maven下载慢的解决方法
7、新到公司,配置私服地址?
8、有一天,Maven管理的项目不再使用Maven了,需要将pom中的依赖都下载到项目中的lib目录下,怎么办?
参考
Last updated