Merge pull request #188 from d4mian/minor-changes
[voldemort/jeffpc.git] / bin / voldemort-scala-shell.sh
blobba24fa639a055f1ae3368930195897c53982b10a
1 #!/bin/bash
4 # Copyright 2008-2013 LinkedIn, Inc
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 # http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
18 export scala_shell="voldemort.VoldemortScalaShell"
20 base_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )"/.. && pwd )"
22 for file in $base_dir/lib/*.jar;
24 CLASSPATH=$CLASSPATH:$file
25 done
27 for file in $base_dir/contrib/*/lib/*.jar;
29 CLASSPATH=$CLASSPATH:$file
30 done
32 for file in $base_dir/dist/*.jar;
34 CLASSPATH=$CLASSPATH:$file
35 done
36 CLASSPATH=$CLASSPATH:$base_dir/dist/resources
39 # add '-Dlog4j.debug ' to debug log4j issues.
40 LOG4JPROPERTIES="-Dlog4j.configuration=file://${base_dir}/src/java/log4j.properties"
42 # If it is the scala shell is being launched use the scala command else java
43 export CLASSPATH
44 scala $LOG4JPROPERTIES -cp $CLASSPATH $scala_shell $@