在eclipse上使用maven maven-war-plugin插件过滤一个子项目的xml文件不成功
maven配置
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.4</version>
<configuration>
<overlays>
<overlay>
<groupId>com.chinarb.new</groupId>
<artifactId>RBManagerNew-Model</artifactId>
<excludes>
<exclude>**/web.xml</exclude>
<exclude>WEB-INF/classes/config/</exclude>
</excludes>
</overlay>
</overlays>
</configuration>
</plugin>
</plugins>
想把web-inf下面的web.xml过滤掉,但是不能成功不管将<exclude>**/web.xml</exclude>的内容换成web-inf/web.xml还是 */web-inf/web.xml 还是web-inf/* 都不成功
下面是配置的依赖
<dependency>
<groupId>com.chinarb.new</groupId>
<artifactId>RBManagerNew-Model</artifactId>
<version>${project.model}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>com.chinarb.new</groupId>
<artifactId>RBManagerNew-Model</artifactId>
<type>jar</type>
<classifier>jar</classifier>
<version>${project.model}</version>
</dependency>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论