forked from I2P_Developers/i2p.i2p
stop build on jsp compile errors
This commit is contained in:
@ -55,7 +55,7 @@
|
|||||||
<mkdir dir="../jsp/WEB-INF/" />
|
<mkdir dir="../jsp/WEB-INF/" />
|
||||||
<mkdir dir="../jsp/WEB-INF/classes" />
|
<mkdir dir="../jsp/WEB-INF/classes" />
|
||||||
<!-- there are various jspc ant tasks, but they all seem a bit flakey -->
|
<!-- there are various jspc ant tasks, but they all seem a bit flakey -->
|
||||||
<java classname="org.apache.jasper.JspC" fork="true" >
|
<java classname="org.apache.jasper.JspC" fork="true" failonerror="true">
|
||||||
<classpath>
|
<classpath>
|
||||||
<pathelement location="../../jetty/jettylib/jasper-compiler.jar" />
|
<pathelement location="../../jetty/jettylib/jasper-compiler.jar" />
|
||||||
<pathelement location="../../jetty/jettylib/jasper-runtime.jar" />
|
<pathelement location="../../jetty/jettylib/jasper-runtime.jar" />
|
||||||
|
@ -86,7 +86,7 @@
|
|||||||
<mkdir dir="../jsp/WEB-INF/" />
|
<mkdir dir="../jsp/WEB-INF/" />
|
||||||
<mkdir dir="../jsp/WEB-INF/classes" />
|
<mkdir dir="../jsp/WEB-INF/classes" />
|
||||||
<!-- there are various jspc ant tasks, but they all seem a bit flakey -->
|
<!-- there are various jspc ant tasks, but they all seem a bit flakey -->
|
||||||
<java classname="org.apache.jasper.JspC" fork="true">
|
<java classname="org.apache.jasper.JspC" fork="true" failonerror="true">
|
||||||
<classpath>
|
<classpath>
|
||||||
<pathelement location="../../jetty/jettylib/jasper-compiler.jar" />
|
<pathelement location="../../jetty/jettylib/jasper-compiler.jar" />
|
||||||
<pathelement location="../../jetty/jettylib/jasper-runtime.jar" />
|
<pathelement location="../../jetty/jettylib/jasper-runtime.jar" />
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
<delete file="WEB-INF/web-out.xml" />
|
<delete file="WEB-INF/web-out.xml" />
|
||||||
<mkdir dir="${tmp}" />
|
<mkdir dir="${tmp}" />
|
||||||
<echo message="Ignore any warning about /WEB-INF/web.xml not found" />
|
<echo message="Ignore any warning about /WEB-INF/web.xml not found" />
|
||||||
<java classname="org.apache.jasper.JspC" fork="true" classpathref="cp">
|
<java classname="org.apache.jasper.JspC" fork="true" classpathref="cp" failonerror="true">
|
||||||
<arg value="-d" />
|
<arg value="-d" />
|
||||||
<arg value="${tmp}" />
|
<arg value="${tmp}" />
|
||||||
<arg value="-v" />
|
<arg value="-v" />
|
||||||
|
Reference in New Issue
Block a user