openapi-generator/bin/php-petstore.sh

39 lines
1.0 KiB
Bash
Raw Normal View History

2015-02-16 06:20:08 +00:00
#!/bin/sh
SCRIPT="$0"
echo "# START SCRIPT: $SCRIPT"
2015-02-16 06:20:08 +00:00
while [ -h "$SCRIPT" ] ; do
ls=`ls -ld "$SCRIPT"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
SCRIPT="$link"
else
SCRIPT=`dirname "$SCRIPT"`/"$link"
fi
done
if [ ! -d "${APP_DIR}" ]; then
APP_DIR=`dirname "$SCRIPT"`/..
APP_DIR=`cd "${APP_DIR}"; pwd`
fi
2018-03-06 16:20:46 +00:00
executable="./modules/openapi-generator-cli/target/openapi-generator-cli.jar"
2015-02-16 06:20:08 +00:00
if [ ! -f "$executable" ]
then
2018-05-16 13:39:52 +00:00
mvn -B clean package
2015-02-16 06:20:08 +00:00
fi
# cleanup tests
TEST_DIR="./samples/client/petstore/php/OpenAPIClient-php/test"
if [ -d $TEST_DIR ]; then
rm -rf $TEST_DIR
fi
2015-02-16 06:20:08 +00:00
# if you've executed sbt assembly previously it will use that instead.
export JAVA_OPTS="${JAVA_OPTS} -Xmx1024M -DloggerPath=conf/log4j.properties"
ags="generate -t modules/openapi-generator/src/main/resources/php -i modules/openapi-generator/src/test/resources/2_0/petstore-with-fake-endpoints-models-for-testing.yaml -g php -o samples/client/petstore/php/OpenAPIClient-php $@"
2015-02-16 06:20:08 +00:00
java $JAVA_OPTS -jar $executable $ags