I'm trying to filter my shell scripts using maven assembly plugin. Other properties and xml files are getting filtered correctly. However, I'm getting following message in the log for shell scripts.
Relevant assembly descriptor.
<file>
<source>src/main/config/default/buildcron.csh</source>
<outputDirectory>/bin</outputDirectory>
<filtered>true</filtered>
</file>
and here is the message for not filtering above scripts in the log.
file buildcron.csh has a filtered file extension. Is there any way to change this default behavior?
PS: I see similar behavior with txt files.
Edit: Here is the plugin being used from POM.xml
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>make-assembly</id>
<phase>install</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<filters>
<filter>env/${env}.properties</filter>
</filters>
<descriptors>
<descriptor>src/main/assembly/myapp-server.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</build>
Thanks, Prabhjot