blob: ce7559d70a79f9fce2c862b70c9c804432b4dce4 [file] [log] [blame]
@REM
@REM Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved.
@REM
@REM This program and the accompanying materials are made available under the
@REM terms of the Eclipse Public License v. 2.0 which is available at
@REM http://www.eclipse.org/legal/epl-2.0,
@REM or the Eclipse Distribution License v. 1.0 which is available at
@REM http://www.eclipse.org/org/documents/edl-v10.php.
@REM
@REM SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
@REM
@echo off
@setlocal
call "%~dp0setenv.cmd"
@REM User may increase Java memory setting(s) if desired:
set JVM_ARGS=-Xmx256m
@REM If going through a proxy, set the proxy host and proxy port below, then uncomment the line
@REM set JVM_ARGS=%JVM_ARGS% -DproxySet=true -Dhttp.proxyHost= -Dhttp.proxyPort=
@REM Please do not change any of the following lines:
set _FIXPATH=
call :fixpath "%~dp0"
set THIS=%_FIXPATH:~1%
set MODULEPATH=%THIS%..\jlib
set MAIN_CLASS=org.eclipse.persistence.jaxb.xjc.MOXyXJC
set JAVA_ARGS=%*
%JAVA_HOME%\bin\java.exe %JVM_ARGS% -p "%MODULEPATH%" -m org.eclipse.persistence.moxy.xjc %JAVA_ARGS%
@endlocal
goto :EOF
:fixpath
if not %1.==. (
for /f "tokens=1* delims=;" %%a in (%1) do (
call :shortfilename "%%a" & call :fixpath "%%b"
)
)
goto :EOF
:shortfilename
for %%i in (%1) do set _FIXPATH=%_FIXPATH%;%%~fsi
goto :EOF