blob: c6ee971072e4c9d405ce2defcace3b002c545e38 [file] [log] [blame]
@REM
@REM Copyright (c) 2018 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 "%~dp0../../bin/setenv.cmd"
@REM User may increase Java memory setting(s) if desired:
set JVM_ARGS=-Xmx256M
@REM Please do not change any of the following lines:
set _FIXPATH=
call :fixpath "%~dp0"
set THIS=%_FIXPATH:~1%
set _FIXPATH=
call :fixpath "%1"
set SRC_DIR=%_FIXPATH:~1%
set _FIXPATH=
call :fixpath "%2"
set DEST_DIR=%_FIXPATH:~1%
set _FIXPATH=
call :fixpath "%3"
set LOG_DIR=%_FIXPATH:~1%
set CLASSPATH=%THIS%package-rename.jar
set JAVA_ARGS=%SRC_DIR% %DEST_DIR% %THIS%package-rename.properties
@echo on
%JAVA_HOME%\bin\java %JVM_ARGS% -classpath %CLASSPATH% org.eclipse.persistence.utils.rename.MigrateTopLinkToEclipseLink %JAVA_ARGS%
pause
@echo off
@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