mirror of
https://github.com/sigmasternchen/NurseBot
synced 2025-03-15 08:08:58 +00:00
added instrumentation
This commit is contained in:
parent
6b25cb1166
commit
15c512af3a
2 changed files with 8 additions and 2 deletions
|
@ -26,5 +26,9 @@ fi
|
||||||
|
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
./instrumentation.sh
|
||||||
|
|
||||||
|
cp ../bin/activejdbc_models.properties ../build/
|
||||||
|
|
||||||
exit $EXIT_SUCCESS
|
exit $EXIT_SUCCESS
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
pushd ../
|
||||||
|
|
||||||
if test "$1" = ""; then
|
if test "$1" = ""; then
|
||||||
export CLASSPATH="bin"
|
export CLASSPATH="bin"
|
||||||
|
|
||||||
for file in $(ls libs); do
|
for file in $(ls build/NurseBot_lib); do
|
||||||
export CLASSPATH=$CLASSPATH:libs/$file
|
export CLASSPATH=$CLASSPATH:build/NurseBot_lib/$file
|
||||||
done
|
done
|
||||||
|
|
||||||
java -cp $CLASSPATH -DoutputDirectory=bin org.javalite.instrumentation.Main
|
java -cp $CLASSPATH -DoutputDirectory=bin org.javalite.instrumentation.Main
|
Loading…
Reference in a new issue