Hi,
I need to add some scripts in my webapp and control filemods and line
endings. Doing this with maven-assembly-plugin is easy:
...
<fileSets>
<fileSet>
<directory>scripts</directory>
<outputDirectory>WEB-INF/scripts</outputDirectory>
<includes>
<include>*</include>
</includes>
<fileMode>750</fileMode>
<lineEnding>unix</lineEnding>
</fileSet>
</fileSets>
....
I haven't found a way to do this with the default pom (packaging=war)
When I try to join this war using the assembly plugin I end up with two wars
and (only one installed).
Is there a howto/doc that demostrates how to use the assembly plugin to
package and install a single war webapp?
Thanks
--
View this message in context:
http://old.nabble.com/maven-war-plugin-and-maven-assembly-plugin.-Change-file-mode-and-line-ending-tp28755057p28755057.html
Sent from the Maven - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]