使用scope 为 system 引入本地jar
不太推荐使用这种方式。
将jar包复制到项目的lib目录中,然后在pom中这样引用:
<dependency>
<groupId>随便写</groupId>
<artifactId>随便写</artifactId>
<version>随便写</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/xxxxxxx.jar</systemPath>
</dependency>
basedir不用改,就这么写,你只用把xxxxxx换成你的jar名称就可以了,{basedir}应该是maven提供的一个变量,代表项目的根目录;
groupId、artifactId、version 这三个不能省略,但可以随便写;
网友评论