天天看点

maven 引入 项目中jar文件

引入项目中jar

<dependency>

<groupId>org.xxx</groupId>

<artifactId>xxx.jar</artifactId>

<version>1.0</version>

<scope>system</scope>

<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/xxx.jar</systemPath>

</dependency>

继续阅读