Minor editorial changes to EXAMPLES.md
[stompngo_examples.git] / jinterop / cp.sh
blob0d2bce62527e4257f4a523f1c6c6ef4041981a49
2 # ActiveMQ lib directory.
3 # You will need to change this path!
4 AHL=/ad3/amq/lib
6 # CP will be the Java CLASSPATH
7 CP=.
9 # Main AMQ JAR files.
10 for j in $(ls -1 $AHL/*.jar);do
11 # echo $j
12 CP="${CP}:$j"
13 done
15 # Need optional JARs as well.
16 for j in $(ls -1 $AHL/optional/*.jar);do
17 # echo $j
18 CP="${CP}:$j"
19 done