2014-09-22 23:44:19 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
SCRIPT="$0"
|
|
|
|
|
|
|
|
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
|
2015-06-17 08:16:44 +00:00
|
|
|
./bin/akka-scala-petstore.sh
|
2016-01-04 11:09:07 +00:00
|
|
|
./bin/android-petstore.sh
|
2015-11-16 16:47:12 +00:00
|
|
|
./bin/clojure-petstore.sh
|
2015-03-28 14:55:15 +00:00
|
|
|
./bin/csharp-petstore.sh
|
2015-02-05 18:22:28 +00:00
|
|
|
./bin/dynamic-html.sh
|
2016-01-31 11:20:19 +00:00
|
|
|
./bin/haskell-petstore.sh
|
2015-03-25 09:58:22 +00:00
|
|
|
./bin/html-petstore.sh
|
2014-09-22 23:44:19 +00:00
|
|
|
./bin/java-petstore.sh
|
2015-08-05 09:28:45 +00:00
|
|
|
./bin/java-petstore-jersey2.sh
|
2015-08-31 11:59:17 +00:00
|
|
|
./bin/java-petstore-okhttp-gson.sh
|
2015-09-18 12:21:48 +00:00
|
|
|
./bin/java-petstore-retrofit.sh
|
2015-11-10 02:20:49 +00:00
|
|
|
+./bin/java-petstore-retrofit2.sh
|
2015-06-17 08:16:44 +00:00
|
|
|
./bin/jaxrs-petstore-server.sh
|
|
|
|
./bin/nodejs-petstore-server.sh
|
|
|
|
./bin/objc-petstore.sh
|
2015-06-09 05:52:01 +00:00
|
|
|
./bin/perl-petstore.sh
|
2015-02-16 03:50:23 +00:00
|
|
|
./bin/php-petstore.sh
|
|
|
|
./bin/python-petstore.sh
|
2015-06-17 08:16:44 +00:00
|
|
|
./bin/qt5-petstore.sh
|
2015-03-28 14:55:15 +00:00
|
|
|
./bin/ruby-petstore.sh
|
2015-06-17 08:16:44 +00:00
|
|
|
./bin/scala-async-petstore.sh
|
2015-02-16 06:20:08 +00:00
|
|
|
./bin/scala-petstore.sh
|
2015-06-17 08:16:44 +00:00
|
|
|
./bin/scalatra-petstore-server.sh
|
2015-06-17 08:01:24 +00:00
|
|
|
./bin/silex-petstore-server.sh
|
2015-11-18 14:05:05 +00:00
|
|
|
./bin/slim-petstore-server.sh
|
2015-04-04 20:46:35 +00:00
|
|
|
./bin/spring-mvc-petstore-server.sh
|
2015-12-25 03:33:04 +00:00
|
|
|
./bin/spring-mvc-petstore-j8-async-server.sh
|
2015-06-17 08:16:44 +00:00
|
|
|
./bin/swift-petstore.sh
|
2015-02-05 18:22:28 +00:00
|
|
|
./bin/tizen-petstore.sh
|
2015-06-17 15:56:37 +00:00
|
|
|
./bin/typescript-angular-petstore.sh
|
|
|
|
./bin/typescript-node-petstore.sh
|