<dependency> <groupId>abc</groupId> <artifactId>abc</artifactId> <version>1.0</version> <scope>system</scope> <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/abc.jar</systemPath> </dependency> groupId 随便写 artifactID 随便写 version 随便写 scope必须system systemPath 指定lib目录下的jar包
-----------------------------------
<properties> <lib.dir>${basedir}/src/main/webapp/WEB-INF/lib</lib.dir> </properties> <dependencies> <dependency> <groupId>com.xxxx</groupId> <artifactId>xxxx</artifactId> <version>1.0.0</version> <scope>system</scope> <systemPath>${lib.dir}/xxxxx.jar</systemPath> </dependency> </dependencies>
|