-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into upgradeTrackingWithuRWELL
- Loading branch information
Showing
7 changed files
with
92 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,11 @@ | ||
#!/bin/sh | ||
|
||
. `dirname $0`/env.sh | ||
. `dirname $0`/env.sh groovy | ||
|
||
echo """ | ||
**************************************** | ||
* Running COATJAVA Groovy Script * | ||
**************************************** | ||
""" | ||
|
||
export CLAS12DIR=`dirname $0`/.. | ||
|
||
#-------------------------------------------------------------- | ||
# Adding supporting COAT jar files | ||
for i in `ls -a $CLAS12DIR/lib/clas/*.jar` | ||
do | ||
#echo "$i" | ||
if [ -z "${JYPATH}" ] ; then | ||
JYPATH="$i" | ||
else | ||
JYPATH=${JYPATH}:"$i" | ||
fi | ||
done | ||
#-------------------------------------------------------------- | ||
# Adding supporting plugins directory | ||
for i in `ls -a $CLAS12DIR/lib/services/*.jar` | ||
do | ||
if [ -z "${JYPATH}" ] ; then | ||
JYPATH="$i" | ||
else | ||
JYPATH=${JYPATH}:"$i" | ||
fi | ||
done | ||
#-------------------------------------------------------------- | ||
# Adding supporting plugins directory | ||
#-------------------------------------------------------------- | ||
# Done loading plugins | ||
#-------------------------------------------------------------- | ||
# Adding supporting plugins directory | ||
for i in `ls -a $CLAS12DIR/lib/utils/*.jar` | ||
do | ||
if [ -z "${JYPATH}" ] ; then | ||
JYPATH="$i" | ||
else | ||
JYPATH=${JYPATH}:"$i" | ||
fi | ||
done | ||
#------------------------------------------------------------- | ||
JYPATH=${JYPATH}:${CLAS12DIR}/lib/packages | ||
echo " " | ||
echo " " | ||
echo "*****************************************" | ||
echo "* Running COAT-JAVA Groovy Scripts *" | ||
echo "* Version : 3a Release : 2016 *" | ||
echo "*****************************************" | ||
echo " " | ||
echo " " | ||
export JAVA_OPTS="-Dsun.java2d.pmoffscreen=false -Djava.util.logging.config.file=$CLAS12DIR/etc/logging/debug.properties -Xms1024m -Xmx2048m -XX:+UseSerialGC" | ||
groovy -cp "$JYPATH" "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/sh | ||
|
||
. `dirname $0`/env.sh groovy | ||
|
||
echo """ | ||
*************************************** | ||
* Running COATJAVA Groovy Shell * | ||
*************************************** | ||
""" | ||
|
||
groovysh -cp "$JYPATH" "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,11 @@ | ||
#!/bin/sh | ||
|
||
. `dirname $0`/env.sh | ||
. `dirname $0`/env.sh jshell | ||
|
||
echo """ | ||
********************************* | ||
* Running COATJAVA JShell * | ||
********************************* | ||
""" | ||
|
||
export CLAS12DIR=`dirname $0`/.. | ||
|
||
#-------------------------------------------------------------- | ||
# Adding supporting COAT jar files | ||
for i in `ls -a $CLAS12DIR/lib/clas/*.jar` | ||
do | ||
#echo "$i" | ||
if [ -z "${JYPATH}" ] ; then | ||
JYPATH="$i" | ||
else | ||
JYPATH=${JYPATH}:"$i" | ||
fi | ||
done | ||
#-------------------------------------------------------------- | ||
# Adding supporting plugins directory | ||
for i in `ls -a $CLAS12DIR/lib/services/*.jar` | ||
do | ||
if [ -z "${JYPATH}" ] ; then | ||
JYPATH="$i" | ||
else | ||
JYPATH=${JYPATH}:"$i" | ||
fi | ||
done | ||
#-------------------------------------------------------------- | ||
# Adding supporting plugins directory | ||
#-------------------------------------------------------------- | ||
# Done loading plugins | ||
#-------------------------------------------------------------- | ||
# Adding supporting plugins directory | ||
for i in `ls -a $CLAS12DIR/lib/utils/*.jar` | ||
do | ||
if [ -z "${JYPATH}" ] ; then | ||
JYPATH="$i" | ||
else | ||
JYPATH=${JYPATH}:"$i" | ||
fi | ||
done | ||
#------------------------------------------------------------- | ||
echo " " | ||
echo " " | ||
echo "*****************************************" | ||
echo "* Running COAT-JAVA JShell Scripts *" | ||
echo "*****************************************" | ||
echo " " | ||
echo " " | ||
jshell --class-path "$JYPATH" "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters