Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: None
-
Labels:None
-
Number of attachments :
Description
The war plugin uses
<classes dir="$
{maven.build.dest}"><include name="${maven.war.classes.includes}" />
<exclude name="${maven.war.classes.excludes}" />
</classes>
to build up the list of files to include in the war file.
This prevents the specification of a lists files to include and exclude, eg:
maven.war.classes.includes=org/foo/*,org/bar/*
maven.war.classes.excludes=org/foo/ter/*,org/bar/fly/*
The fix is to replace the nested <include> and <excludes> as follows:
<classes dir="${maven.build.dest}
"
includes="$
"
excludes="$
" />
Patch to follow.
Issue Links
- is depended upon by
-
MAVEN-401
Release maven-b10
-
patch to the war plugin.jelly script