eclipse的maven项目导入第三方jar包到pom.xml的方法

此文档基础eclipse工具,jdk1.7.02


1.点击run as ==> Run Configurations


2.在maven build 中创建新的节点


3.将如下内容根据要导入jar包名称地址进行修改,并添加到Goals中

install:install-file -DgroupId=org.apache.maven  -DartifactId=Gilgamesh -Dversion=1.1 -Dpackaging=jar -Dfile=C:\ChromeDownloads\Gilgamesh1.1.jar

4.在maven项目的pom.xml文件中添加一段代码,如图:


5.重新install maven后,在maven Dependencies中查看,出现该jar包.

你可能感兴趣的:(eclipse的maven项目导入第三方jar包到pom.xml的方法)