1、直接将jar包放置到
src\main\webapp\WEB-INF\lib下 添加org.apache.maven.plugins
maven-compiler-plugin 3.3 2、添加dependency
dependency>
<groupId>?</groupId> <artifactId>?</artifactId> <version>1.0.0</version> <scope>system</scope> <systemPath>${project.basedir}/libs/?.jar</systemPath> </dependency><plugin>
<groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <webResources> <resource> <directory>libs</directory> <targetPath>WEB-INF/lib/</targetPath> <includes> <include>**/*.jar</include> </includes> </resource> </webResources> </configuration> </plugin>