Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcbrealey2007-01-11 21:16:32 +0000
committercbrealey2007-01-11 21:16:32 +0000
commitb068f8bb89fd83ca25f5c67953d5a407d2afdbe9 (patch)
treef7738b6b4d597a7d66cbab9078180c6fe01b93ae
parenta0d8a5c882d07f1165f4f19582abe34bb761d52d (diff)
downloadwebtools.webservices-b068f8bb89fd83ca25f5c67953d5a407d2afdbe9.tar.gz
webtools.webservices-b068f8bb89fd83ca25f5c67953d5a407d2afdbe9.tar.xz
webtools.webservices-b068f8bb89fd83ca25f5c67953d5a407d2afdbe9.zip
[167150] 500 error appears when running the wse on jdk 1.42
-rw-r--r--bundles/org.eclipse.wst.ws.explorer/build-war.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.wst.ws.explorer/build-war.xml b/bundles/org.eclipse.wst.ws.explorer/build-war.xml
index 7a2b51ef7..78ec8b6d9 100644
--- a/bundles/org.eclipse.wst.ws.explorer/build-war.xml
+++ b/bundles/org.eclipse.wst.ws.explorer/build-war.xml
@@ -10,7 +10,7 @@
<property name="wsexplorerDir" value="${buildDirectory}/plugins/org.eclipse.wst.ws.explorer/wsexplorer"/>
<target name="jspcompile" unless="wsexplorer.war" description="Pre-compile the JSPs in the org.eclipse.wst.ws.explorer plugin">
- <java classname="org.apache.jasper.JspC" fork="true" jvm="env.JAVA_4_HOME/bin/java">
+ <java classname="org.apache.jasper.JspC" fork="true" jvm="${env.JAVA_4_HOME}/bin/java">
<arg line="-webxml ${wsexplorerDir}/WEB-INF/web.xml -d ${wsexplorerDir} -webapp ${wsexplorerDir}"/>
<classpath>
<fileset dir="${baseLocation}/plugins">
@@ -21,7 +21,7 @@
</fileset>
</classpath>
</java>
- <javac destdir="${wsexplorerDir}/WEB-INF/classes" includeAntRuntime="false" failonerror="false" executable="env.JAVA_4_HOME/bin/javac" fork="true">
+ <javac destdir="${wsexplorerDir}/WEB-INF/classes" includeAntRuntime="false" failonerror="false" executable="${env.JAVA_4_HOME}/bin/javac" fork="true">
<src path="${wsexplorerDir}"/>
<classpath>
<fileset dir="${buildDirectory}/plugins">

Back to the top