有时候,天朝的网速不给力,所以通过别的方法下载的jar包,想要传到本地的maven仓库上面,下面介绍两种方法,一种是直接导入到maven本地,第二种是在pom.xml应用jar包
Maven 安装 JAR 包的命令是:
mvn install:install-file
-Dfile=jar包的位置
-DgroupId=上面的groupId
-DartifactId=上面的artifactId
-Dversion=上面的version
-Dpackaging=jar
下面给大家一个例子,注意:任何路径和名称不要有中文和空格,以防出现莫名其妙的错误。
mvn install:install-file -Dfile=E:/BaiduNetdiskDownload/cas-server-webapp-tomcat-5.2.0.war -DgroupId=org.apereo.cas -DartifactId=cas-server-webapp-tomcat -Dversion=5.2.0 -Dpackaging=war
而对应的pom.xml的配置文件是
<dependency>
<groupId>org.apereo.cas</groupId>
<artifactId>cas-server-webapp-tomcat</artifactId>
<version>5.2.0</version>
<type>war</type>
<scope>runtime</scope>
</dependency>
pom.xml中外部引用的方法
${project.basedir}
表示当前的项目目录,需要将要导入的包先放在项目的目录下面,然后再调用,而且这个systemPath 使用的时候,作用域必须是 scope
<!--引入数据库认证相关 end-->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>4.2.3.RELEASE</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/spring-security-core-4.2.3.RELEASE.jar</systemPath>
</dependency>
这个是web项目所对应的路径,这个${project.basedir}
就相当于这个项目的路径/cas-overlay