maven之pom.xml如何引入本地的依賴jar

    常常會用到,因此記錄下html

以下List-1所示,重點是scope和systemPath的值spa

  1. scope的值要設置爲system
  2. systemPath的值,指向jar的路徑

    List-1code

<dependency>
	<groupId>com.xxx.xxx</groupId>
	<artifactId>xxxx</artifactId>
	<scope>system</scope>
	<systemPath>${project.basedir}/lib/xxx.1.0.jar</systemPath>
</dependency>

 

Reference:

  1. https://www.cnblogs.com/523823-wu/p/7635358.html
相關文章
相關標籤/搜索