Filip Polsakiewicz wrote:
Hi all,
I'm having trouble using the war plugin. How can I tell the plugin to include property files from src/java in the war?
Any help would be appreciated.
Thanks Filip
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Hi Filip
I have done somthing similar by including the following in the project.xml. This might help.
<build> <resources>
<resource>
<directory>${basedir}/src/conf</directory>
<includes>
<include>*.properties</include>
</includes>
</resource>
</resources>
</build>
Regards Martien
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
