0%

maven使用外部依赖

maven使用外部依赖

有时候我们使用的依赖在中央仓库和远程仓库中都没有,但是代码中又要使用到,那么如何进行引入呢?

可以使用system作用域,来引用本地的jar包

1
2
3
4
5
6
7
<dependency>
<groupId>abc</groupId>
<artifactId>abc</artifactId>
<version>1.0</version>
<scope>system</scope> <!-- 作用域为system -->
<systemPath>${basedir}\src\lib\abc.jar</systemPath>
</dependency>

欢迎关注我的其它发布渠道