maven 向本地私库导入jar

 mvn install:install-file
-DgroupId=<your_group_name>
-DartifactId=<your_artifact_name>
-Dversion=<snapshot>
-Dfile=<path_to_your_jar_file>
-Dpackaging=jar
-DgeneratePom=true

若是提供的jar有依赖其他jar,那还得将依赖关系加上, 即指定 pom 文件,不然依赖就会丢失。 方法是:

mvn org.apache.maven.plugins:maven-install-plugin:2.5.2:install-file -Dfile=path-to-your-artifact-jar -DpomFile=path-to-pom

参考:

1、http://my.oschina.net/jiyayun/blog/147997

2、 http://maven.apache.org/plugins/maven-install-plugin/examples/custom-pom-installation.html

上一篇:C#计算两个日期之间相差的天数


下一篇:wpf treeview 数据绑定 递归绑定节点