Maven导入本地包
2020-12-14 本文已影响0人
别问我是谁丶
- 使用scope
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
<version>1.12.2</version>
<scope>system</scope>
<systemPath>${basedir}/../lib/craftbukkit-1.12.2.jar</systemPath>
</dependency>
- 使用本地repo
<repositories>
<repository>
<id>local</id>
<url>file://${basedir}/repo</url>
</repository>
</repositories>