Hi ,
I am trying to merge two war files in one by using maven assembly. It merges
easily. But now I want to use filter in those war files. For example
excluding some jsp files and some other files.
In my assembly section. I did.
<dependencySet>
<outputDirectory>HelloWorld</outputDirectory>
<includes>
<include>myproject:HelloWorld-1.0</include>
</includes>
<excludes>
<exclude>*.jsp</exclude>
</excludes>
<unpack>true</unpack>
<scope>runtime</scope>
</dependencySet>
It's not excluding any jsp files. Any hint will be appreciated.
thanks in advance.
--
View this message in context:
http://old.nabble.com/How-to-exclude-certain-files-from-war-file.-tp26810367p26810367.html
Sent from the Maven - Issues mailing list archive at Nabble.com.