Maven安装jar的几种方式
1、指定groupld、artifactId、version的安装方式
D:\services\apache-maven-3.2.5\bin\mvn install:install-file -DgroupId=com.zgeo.work -DartifactId=zgeo-geo -Dversion=1.0.0.RELEASE -Dpackaging=jar -Dfile=.\zgeo\zgeo-geo\target\zgeo-geo-1.0.0.RELEASE.jar
2、指定jar、pom的安装方式(自动添加依赖)
D:\services\apache-maven-3.2.5\bin\mvn install:install-file -Dfile=.\zgeo\zgeo-web\target\zgeo-web-1.0.0.RELEASE.jar -DpomFile=.\zgeo\zgeo-web\pom.xml
3、指定jar的安装方式(pom.xml文件在META-INF目录的子文件夹中)
D:\services\apache-maven-3.2.5\bin\mvn install:install-file -Dfile=.\zgeo\zgeo-web\target\zgeo-web-1.0.0.RELEASE.jar
4、不安装jar,项目工程直接引用(不建议)
<dependency>
<groupId>com.zgeo.work</groupId>
<artifactId>zgeo-web</artifactId>
<version>1.0.0.RELEASE</version>
<systemPath>${basedir}/lib/zgeo-web-1.0.0.RELEASE.jar</systemPath>
<scope>system</scope>
</dependency>