Details
-
Type:
Improvement
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.2-beta-1
-
Fix Version/s: 2.2-beta-2
-
Component/s: None
-
Labels:None
-
Environment:Maven 2.0.4
-
Number of attachments :
Description
For the moment we can only set a filter for one file
<files>
<file>
<source>./src/main/resources/log4j.properties</source>
<outputDirectory>resources</outputDirectory>
<filtered>true</filtered>
</file>
</files>
It would be nice to can do the same for a set of files like this
<fileSet>
<directory>./src/main/resources</directory>
<outputDirectory>resources</outputDirectory>
<includes>
<include>*/.properties</include>
</includes>
<filtered>true</filtered>
</fileSet>
Thanks
Attachments
Issue Links
| This issue relates to: | ||||
| MASSEMBLY-221 | Filtering doesn't work when a file matches both a <fileSet> and a <file> |
|
|
|
| MASSEMBLY-329 | Filter fail to initialize when build from parent pom while assembly is in child pom |
|
|
|
| MASSEMBLY-178 | filtering doesn't read filter files |
|
|
|
| This issue is related to: | ||||
| MASSEMBLY-230 | <fileset> not filtering resources, but <files> does filter |
|
|
|
Hello, All!
This patch solves an issue problem. It simply delegates FileSet filtering and lineEnding to File formating.
Best regards.