build_compiledjsps.sh 690 B

1234567891011121314151617181920212223
  1. #!/bin/sh
  2. ##########################
  3. # Licensed Materials - Property of IBM
  4. #
  5. # IBM Cognos Products: cpscrn
  6. #
  7. #
  8. # (C) Copyright IBM Corp. 2005, 2012
  9. #
  10. # US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  11. #
  12. ##########################
  13. # Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
  14. # Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
  15. if [ "$JAVA_HOME" = "" ]
  16. then
  17. echo The JAVA_HOME variable must be present
  18. else
  19. $JAVA_HOME/bin/java -classpath "../../tomcat/lib/catalina-ant.jar:$JAVA_HOME/lib/tools.jar" org.apache.tools.ant.Main precompilejsps $@
  20. fi