Author: chatellier Date: 2008-12-09 14:19:46 +0000 (Tue, 09 Dec 2008) New Revision: 1649 Modified: isis-fish/trunk/go.sh Log: Correct go.sh Modified: isis-fish/trunk/go.sh =================================================================== --- isis-fish/trunk/go.sh 2008-12-09 13:49:41 UTC (rev 1648) +++ isis-fish/trunk/go.sh 2008-12-09 14:19:46 UTC (rev 1649) @@ -54,13 +54,13 @@ mvn -o compile jar:jar fi -if [ ! -d $rep/target/dependency ]; then +if [ ! -d $rep/target/lib ]; then mvn -o dependency:copy-dependencies fi aspectwerkz="" CL=$rep/target/classes #:$rep/target/isis-fish-3.0.0.jar -for f in $rep/target/dependency/*.jar; do +for f in $rep/target/lib/*.jar; do CL=$CL:$f if [ -n "$(echo $f | grep aspectwerkz-jdk5)" ]; then aspectwerkz="-javaagent:$f" @@ -68,5 +68,6 @@ done LOG="-Dlog4j.configuration=file:$rep/src/resources/log4j.properties" # -Dlog4j.debug" +echo $JAVA -Xmx$MX -Xms$MX -classpath $CL $NOaspectwerkz $TRACE_FILE $LOG $JVM_OPT $DEBUG fr.ifremer.isisfish.IsisFish "$@" $JAVA -Xmx$MX -Xms$MX -classpath $CL $NOaspectwerkz $TRACE_FILE $LOG $JVM_OPT $DEBUG fr.ifremer.isisfish.IsisFish "$@" #$JAVA -Xmx$MX -Xms$MX -classpath $CL $NOaspectwerkz $TRACE_FILE $LOG $JVM_OPT $DEBUG fr.ifremer.isisfish.ui.update.Counter "$@"