Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 1 | @echo off |
| 2 | REM |
Lukas Jungmann | 87f3098 | 2019-01-24 09:48:40 +0100 | [diff] [blame] | 3 | REM Copyright (c) 2018, 2019 Oracle and/or its affiliates. All rights reserved. |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 4 | REM |
| 5 | REM This program and the accompanying materials are made available under the |
| 6 | REM terms of the Eclipse Public License v. 2.0, which is available at |
| 7 | REM http://www.eclipse.org/legal/epl-2.0. |
| 8 | REM |
| 9 | REM This Source Code may also be made available under the following Secondary |
| 10 | REM Licenses when the conditions for such availability set forth in the |
| 11 | REM Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| 12 | REM version 2 with the GNU Classpath Exception, which is available at |
| 13 | REM https://www.gnu.org/software/classpath/license.html. |
| 14 | REM |
| 15 | REM SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| 16 | REM |
| 17 | |
| 18 | |
| 19 | |
| 20 | set AS_INSTALL_LIB=%~dp0..\modules |
arjantijms | 2164ef8 | 2020-12-23 12:02:17 +0100 | [diff] [blame] | 21 | set JSP_IMPL=%AS_INSTALL_LIB%\wasp.jar |
smillidge | ee7f400 | 2020-07-17 20:44:15 +0100 | [diff] [blame] | 22 | set EL_IMPL=%AS_INSTALL_LIB%\jakarta.el.jar;%AS_INSTALL_LIB%\jakarta.el-api.jar |
Lukas Jungmann | 87f3098 | 2019-01-24 09:48:40 +0100 | [diff] [blame] | 23 | set JSTL_IMPL=%AS_INSTALL_LIB%\jakarta.servlet.jsp.jstl.jar |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 24 | set AS_LIB=%~dp0..\lib |
| 25 | set JAVAEE_API=%AS_LIB%\javaee.jar |
| 26 | |
| 27 | java -cp "%JSP_IMPL%;%JAVAEE_API%;%AS_LIB%" org.apache.jasper.JspC -sysClasspath "%JSP_IMPL%;%EL_IMPL%;%JSTL_IMPL%;%JAVAEE_API%;%AS_LIB%" -schemas "/schemas/" -dtds "/dtds/" %* |