Thanks for the tip Denis.
I'm working in Maven 2 and found an even easier way... warSourceExcludes was
exactly what i was looking for.
This is the relavant build entry in my pom.xml
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.0</version>
<configuration>
<warSourceExcludes>${prop.warSourceExcludes}</warSourceExcludes>
</configuration>
</plugin>
The propertty ${prop.warSourceExcludes} is defined depending on my
environement (development or production).
--
View this message in context:
http://www.nabble.com/Separate-static-content-in-war-tf1981030.html#a5472639
Sent from the Maven - Users forum at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]