赞
踩
mvn install:install-file 本地安装的jar包, 没有传递依赖!
-- 方式1: 指定GAVP并自动生成最小化的pom.xml.
mvn install:install-file -Dfile=brCommonApi-1.0.0.jar -DgroupId=com.clx -DartifactId=brCommon-api -Dversion=1.0.0 -Dpackaging=jar
-- 方式2: 手动指定pom.xml.
mvn install:install-file -Dfile=brCommonApi-1.0.0.jar -DpomFile=pom.xml
-- 方式3: 使用JAR包内的pom.xml.
mvn org.apache.maven.plugins:maven-install-plugin:3.0.0-M1:install-file -Dfile=brCommonApi-1.0.0.jar
方式1: 最小化的pom.xml, 内部没有传递的依赖!
方式2: 指定的pom.xml, 最好是和jar包相匹配的!
方式3: 需要指定maven-install-plugin的版本(最小 3.0.0-M1)
目前最新的maven版本3.8.5, 默认的maven-install-plugin版本还是2.5.2
注意: 如果能把三方jar包, deploy到远程仓库(maven私服), 就不要单独install到本地仓库!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。