See all the set methods in http://tomcat.apache.org/tomcat-5.5-doc/jasper/docs/api/org/apache/jasper/JspC.html

Typically I use the ant delete task after the compilation is done. I also exclude index.jsp so welcome file mappings work OK.

<delete>
   <fileset  dir="${build.dir}">
      <include name="**/*.jsp" />
      <exclude name="**/index.jsp" />
   </fileset>
</delete>


-Tim

Charl Gerber wrote:
All the examples only show a set few, but where can I
get a complete list of all the possible options and
arguments I can set?

I particularly want to remove source jsp files from a
war if they have been compiled.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to