|
Lift Framework example source code file (liftsh)
The Lift Framework liftsh source code#!/bin/sh # Load custom liftsh config if test -f ~/.liftsh.config; then . ~/.liftsh.config fi # Internal options, always specified INTERNAL_OPTS="-Dfile.encoding=UTF-8 -Xss8M -Xmx1G -noverify -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:MaxPermSize=512M" # Default options, if nothing is specified DEFAULT_OPTS="-Dsbt.intransitive=true" cd `dirname $0` # Call with INTERNAL_OPTS followed by LIFTSH_OPTS (or DEFAULT_OPTS). java aways takes the last option when duplicate. exec java ${INTERNAL_OPTS} ${LIFTSH_OPTS:-${DEFAULT_OPTS}} -jar project/sbt-launch-0.7.7.jar "$@" Other Lift Framework examples (source code examples)Here is a short list of links related to this Lift Framework liftsh source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.