使用根目录的相对路径来引用JAR文件可以通过以下步骤实现:
```xml
<dependencies>
<dependency>
<groupId>com.example</groupId>
<artifactId>example</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${basedir}/lib/example.jar</systemPath>
</dependency>
</dependencies>
```
```groovy
dependencies {
implementation files('lib/example.jar')
}
```
注意事项:
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云