Hey, I can't seem to get this to work. I've tried both:
<excludes>**/ReportViewerSetup.jsp</excludes>
And <excludes>
<exclude>**/ReportViewerSetup.jsp</exclude>
</excludes>
Any ideas? Is that not supported?
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jspc-maven-plugin</artifactId>
<executions>
<execution>
<id>jspc</id>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
<configuration>
<source>1.5</source>
<target>1.5</target>
<excludes>**/ReportViewerSetup.jsp</excludes>
</configuration>
</plugin>