Hi, What's the best way to do property value interpolation on JSP file contents in a webapp project?
The following pom.xml snippet seems to do the trick: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.2</version> <configuration> <webResources> <resource> <directory>src/main/webapp/WEB-INF/jsp</directory> <targetPath>WEB-INF/jsp</targetPath> <filtering>true</filtering> </resource> </webResources> ... Is this the correct way to do JSP filtering? This seems to have some side effects with the JRebel plugin starting to generate a different kind of rebel.xml file. I'm using Maven 3.0. marko --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
