pom.xml
引入依赖: <dependency> <groupId>com.lancoo</groupId> <artifactId>LoggingPlugIn</artifactId> <version>0.0.1</version> <scope>system</scope> <systemPath>${project.basedir}/libs/LoggingPlugIn-0.0.1.jar</systemPath> </dependency> 配置迁移/赋值: <plugin> <!-- 配置jar包打包工具 --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <webResources> <resource> <directory>${project.basedir}/libs</directory> <targetPath>WEB-INF/lib</targetPath> <includes> <include>**/*.jar</include> </includes> </resource> </webResources> </configuration> </plugin>