我想从war文件中排除3个cxf jar,以便从jboss 7.2服务器加载这些jar。我正在使用以下代码,但jar并没有被删除。
<war destfile="dist/@{project-web}.war" webxml="WebRoot/WEB-INF/web.xml">
<fileset dir="WebRoot"/>
<lib dir="WebRoot-AL/WEB-INF/lib">
<exclude name="cxf-core-3.2.5*.jar" />
<exclude name="cxf-rt-frontend-simple-3.2.5*.jar" />
<exclude name="cxf-rt-transports-http-3.2.5*.jar" />
</lib>
<!--lib dir="WebRoot/WEB-INF/lib" /-->
<classes dir="${bin.hudson}/extractor"/>
</war>
上述脚本正确吗?如果没有,我该怎么办?