build.bat 854 B

1234567891011121314151617181920212223242526272829
  1. @echo off
  2. rem Licensed Materials - Property of IBM
  3. rem
  4. rem IBM Cognos Products: CAMAAA
  5. rem
  6. rem (C) Copyright IBM Corp. 2005, 2016
  7. rem
  8. rem US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with
  9. rem IBM Corp.
  10. rem Copyright © 2008 Cognos ULC, an IBM Company. All Rights Reserved.
  11. rem Cognos and the Cognos logo are trademarks of Cognos ULC (formerly Cognos Incorporated).
  12. rem Build Java files in directory TrustedSignonMapping
  13. echo Building TrustedSignonMapping
  14. rem Build the CLASSPATH required to build Java files in the directory TrustedSignonMapping
  15. set _CLASSPATH=..\lib\CAM_AAA_CustomIF.jar;..\adapters
  16. rem Compile Java files
  17. javac -classpath %_CLASSPATH% -d . -source 7 -target 7 *.java
  18. rem Create jar file
  19. jar cfm0 CAM_AAA_TrustedSignonMapping.jar MANIFEST *.class
  20. echo done