pom.xml
<!-- package打包排除掉一些配置文件 --> <plugin> groupId>org.apache.maven.plugins</artifactId>maven-war-pluginversion>2.0.2configuration> warSourceExcludes>src/main/resources/**> >
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.1.1</version> <configuration> <webResources> <resource> <directory>src/main/webapp</directory> <excludes> <exclude>**/*.jpg</exclude> </excludes> </resource> </webResources> </configuration> </plugin>
>maven-jar-plugin>2.4> excludes> exclude>src/main/resources/*.sql> > >