2013-06-26 03:10:48 +00:00
|
|
|
#!/bin/sh
|
2012-12-20 22:32:29 +00:00
|
|
|
|
2013-06-26 03:10:48 +00:00
|
|
|
SCRIPT="$0"
|
2013-10-18 21:46:03 +00:00
|
|
|
SCALA_RUNNER_VERSION=$(scala ./bin/Version.scala)
|
2013-06-26 03:10:48 +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
|
|
|
|
|
|
|
|
cd $APP_DIR
|
|
|
|
|
|
|
|
|
|
|
|
# if you've executed sbt assembly previously it will use that instead.
|
2013-10-18 23:05:50 +00:00
|
|
|
export JAVA_OPTS="${JAVA_OPTS} -XX:MaxPermSize=256M -Xmx1024M -DloggerPath=conf/log4j.properties -DfileMap=samples/client/wordnik-api/spec-files/resources.json"
|
2013-06-26 03:10:48 +00:00
|
|
|
ags="$@ samples/client/wordnik-api/php/PHPWordnikApiCodegen.scala http://api.wordnik.com/v4/resources.json"
|
|
|
|
|
2013-10-18 21:46:03 +00:00
|
|
|
if [ -f $APP_DIR/target/scala-$SCALA_RUNNER_VERSION/swagger-codegen.jar ]; then
|
|
|
|
scala -cp target/scala-$SCALA_RUNNER_VERSION/swagger-codegen.jar $ags
|
2013-06-26 03:10:48 +00:00
|
|
|
else
|
2013-10-18 21:46:03 +00:00
|
|
|
echo "Please set scalaVersion := \"$SCALA_RUNNER_VERSION\" in build.sbt and run ./sbt assembly"
|
2013-06-26 03:10:48 +00:00
|
|
|
fi
|