Maven下载依赖包的方法

在你需要下载的目录下:

 

 建一个批处理文件,download.bat,内容:

call mvn -f pom.xml dependency:copy-dependencies

@pause

 

再建一个pom.xml文件,以下载:

    4.0.0

    temp.download

    temp-download

    1.0-SNAPSHOT 

 

   

       

            org.apache.httpcomponents

            httpcore

            4.3.1

       

 

   

 

然后运行download.bat 就可以把jar包下载到本地了。

 

详见:http://jingyan.baidu.com/article/22fe7ced3b0a003002617fd1.html

 

你可能感兴趣的:(maven)