欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

maven 安装jar到本地仓库

程序员文章站 2022-07-15 15:36:43
...

----maven 安装jar到本地仓库----

mvn install:install-file -Dfile=jar包的位置 -DgroupId=上面的groupId -DartifactId=上面的artifactId -Dversion=上面的version -Dpackaging=jar

例如:

mvn install:install-file -Dfile=G:\PageSecurity-0.0.2.jar -DgroupId=com.ailk.ecs -DartifactId=PageSecurity -Dversion=0.0.2 -Dpackaging=jar