All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scripts.generate-assertions.bat Maven / Gradle / Ivy

There is a newer version: 2.2.1
Show newest version
@REM ----------------------------------------------------------------------------
@REM Licensed to the Apache Software Foundation (ASF) under one
@REM or more contributor license agreements.  See the NOTICE file
@REM distributed with this work for additional information
@REM regarding copyright ownership.  The ASF licenses this file
@REM to you under the Apache License, Version 2.0 (the
@REM "License"); you may not use this file except in compliance
@REM with the License.  You may obtain a copy of the License at
@REM
@REM    http://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless required by applicable law or agreed to in writing,
@REM software distributed under the License is distributed on an
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@REM KIND, either express or implied.  See the License for the
@REM specific language governing permissions and limitations
@REM under the License.
@REM ----------------------------------------------------------------------------

@REM ----------------------------------------------------------------------------
@REM Fest Assertions generator Up Batch script
@REM
@REM Required ENV vars:
@REM JAVA_HOME - location of a Java home dir
@REM
@REM ----------------------------------------------------------------------------

@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
@echo off

@REM set %HOME% to equivalent of $HOME
if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")

@REM ==== START VALIDATION ====
if not "%JAVA_HOME%" == "" goto OkJHome

echo.
echo ERROR: JAVA_HOME not found in your environment.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation
echo.
goto error

:OkJHome
if exist "%JAVA_HOME%\bin\java.exe" goto runGenerator

echo.
echo ERROR: JAVA_HOME is set to an invalid directory.
echo JAVA_HOME = "%JAVA_HOME%"
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation
echo.
goto error

@REM ==== END VALIDATION ====


@REM Start generator
:runGenerator
SET JAVA_EXE="%JAVA_HOME%\bin\java.exe"
set CMD_LINE_ARGS=%*

%JAVA_EXE% -classpath ".;lib/*" org.assertj.assertions.generator.cli.AssertionGeneratorLauncher %CMD_LINE_ARGS%
if ERRORLEVEL 1 goto error
goto end

:error
echo Failed to execute Fest Assertions Generator

:end




© 2015 - 2024 Weber Informatics LLC | Privacy Policy