有一个特殊的jar包,编译环境需要引用这个jar包,但是这个jar包已经没有下载地址了,只能是编译时引用一个本地的jar包然后编译。
请问该如何配置pom.xml文件呢?
systemPath,比如
<dependency>
<groupId>com.sun</groupId><artifactId>tools</artifactId>
<version>1.5.0</version>
<scope>system</scope>
<systemPath>C:/java/jdk/lib/tools.jar</systemPath>
</dependency>