With maven-assembly-plugin I can't filter files using a filter.properties
file
(note that it works with pom built-in properties e.g. ${project.groupId} or
<properties>toto<properties>)
I've created a small project using mvn archetype:create and inserted the
assembly configuration (see below)
Everything works fine, except the file filter.properties usage. It looks
like it is completely ignored
(even if this file is not present I dont get any error message from
assembly)
any hint ?
Thanks,
Christian-Luc
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<filters>
<filter>
src/main/assembly/dev/filter.properties
</filter>
</filters>
<descriptors>
<descriptor>
src/main/assembly/dev/packaging_descriptor.xml
</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>directory-inline</goal>
<goal>attached</goal>
</goals>
</execution>
</executions>
</plugin>
--
View this message in context:
http://www.nabble.com/maven-assembly-plugin-and-file-filter.properties-problem-tf3690454s177.html#a10317652
Sent from the Maven - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]