build.bat 649 B

1234567891011121314151617181920212223242526
  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 Build Java files in directory JDBCSample
  11. echo Building JDBCSample
  12. rem Build the CLASSPATH required to build Java files in the directory JDBCSample
  13. set _CLASSPATH=..\lib\CAM_AAA_CustomIF.jar;..\adapters
  14. rem Compile Java files
  15. javac -classpath %_CLASSPATH% -d . -source 7 -target 7 *.java
  16. rem Create jar file
  17. jar cfm0 CAM_AAA_JDBCSample.jar MANIFEST *.class
  18. echo done