Hi,

I have an ANT script which builds my webapp.

Before changing to the new JASPER, we could run the rebuild target, and it
would only precompile the JSPs that had changed.  However, since then, it
always re-precompiles ALL JSPs no matter what.

Does anyone have any ideas why, and how to fix it?

cheers,

David


ANT snippet:

  <target name="jspc">
    <jspc srcdir="${src}\jsp\user"
          destdir="${build.home}\java"
          package="user"
          verbose="3">
      <include name="**/*.jsp" />
      <classpath>
        <pathelement location="${tomcat.home}\common\lib\jasper-runtime.jar"/>
        <pathelement location="${tomcat.home}\common\lib\naming-factory.jar"/>
        <pathelement location="${tomcat.home}\common\lib\jasper-compiler.jar"/>
        <pathelement location="${tomcat.home}\common\endorsed\xercesImpl.jar"/>
        <pathelement location="${tomcat.home}\common\endorsed\xmlParserAPIs.jar"/>
        <pathelement location="${tomcat.home}\common\lib\servlet.jar"/>
        <pathelement location="${tools.home}\ant\ant.jar"/>
        <pathelement location="${src}\jsp\WEB-INF\lib\struts.jar"/>
        <pathelement location="${build.home}\classes"/>
      </classpath>
    </jspc>
</target>



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

Reply via email to