old_setup.sh 392 B

1234567891011121314151617181920212223
  1. #!/bin/bash
  2. fw_depends java8 maven
  3. FILE=beyondj-launcher/deploy/beyondj.jar
  4. rm -rf results
  5. mkdir results
  6. if [ -f $FILE ];
  7. then
  8. echo "File $FILE exists"
  9. else
  10. cd beyondj-launcher/deploy/
  11. jar -cvf0M beyondj.jar META-INF *
  12. cd ../../
  13. fi
  14. echo "Launching BeyondJ from location:$PWD"
  15. java -jar beyondj-launcher/deploy/beyondj.jar system.platform.dbserver=${DBHOST} numInstances=10