Last change
on this file since 322 was
322,
checked in by hendrikvanantwerpen, 13 years ago
|
Added Play! framework and application with Jena dependency. Working on
the basic things now (login/register), after that start implementing
our data model.
|
-
Property svn:executable set to
*
|
File size:
504 bytes
|
Rev | Line | |
---|
[322] | 1 | #! /usr/bin/env sh |
---|
| 2 | |
---|
| 3 | PLAY_VERSION="2.0.1" |
---|
| 4 | |
---|
| 5 | if [ -z "${JPDA_PORT}" ]; then |
---|
| 6 | DEBUG_PARAM="" |
---|
| 7 | else |
---|
| 8 | DEBUG_PARAM="-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=${JPDA_PORT}" |
---|
| 9 | fi |
---|
| 10 | |
---|
| 11 | java ${DEBUG_PARAM} -Xms512M -Xmx1536M -Xss1M -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=384M -Dfile.encoding=UTF8 -Dplay.version="${PLAY_VERSION}" -Dsbt.ivy.home=`dirname $0`/../repository -Dplay.home=`dirname $0` -Dsbt.boot.properties=`dirname $0`/sbt/sbt.boot.properties -jar `dirname $0`/sbt/sbt-launch.jar "$@" |
---|
Note: See
TracBrowser
for help on using the repository browser.