我的EAR包含8个JAR文件,这些文件位于我的EAR的 root 中。我想删除其中两个用于我的最终部署EAR包。
我正在尝试这样做,因为它在这里描述: https://maven.apache.org/plugins/maven-ear-plugin/examples/excluding-files-from-ear.html
但似乎没有用。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<version>2.6</version>
<configuration>
<packagingExcludes>test1.jar,test2.jar</packagingExcludes>
</configuration>
...
</plugin>