【转】MAVEN 添加自己的包到本地仓库及到项目中
原文地址:http://www.tmser.com/post-177.html
maven 构建项目时,可能会引用到一些公司的其他项目。或引用的jar 包在maven 主仓库加载不到。
这时我们可以将我们需要的jar 包安装到本地仓库中。方法如下。
mvn install:install-file -Dfile=D:\mvn\spring-context-support-3.1.0.RELEASE.jar -DgroupId=org.springframework -DartifactId=spring-context-support -Dversion=3.1.0.RELEASE -Dpackaging=jar
当然也可以直接加入到项目中:
引用<dependency>
<groupId>struts</groupId>
<artifactId>struts</artifactId>
<version>1.3.10</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/javabuilder.jar</systemPath>
</dependency>