build.properties 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. ###########################################################
  2. #
  3. # Global settings ...
  4. jcommon.name=jcommon
  5. jcommon.version=1.0.23
  6. #
  7. # This defines the compiler settings. Optimizing would remove
  8. # the debug information, so we dont do that. This may be selfish,
  9. # but these settings guarantee better bug-reports :)
  10. build.debug=true
  11. build.optimize=false
  12. build.deprecation=true
  13. #
  14. # Make sure that JDK 1.6 compatible class files are generated
  15. build.target=1.6
  16. build.source=1.6
  17. #
  18. # All path settings are relative to the project root directory
  19. # (..)
  20. #
  21. libdir=lib
  22. junit-dir=lib
  23. #
  24. # If you specify a non-empty string, then dont forget the
  25. # trailing / here or your results wont fit your expectations...
  26. #
  27. targetdir=
  28. manifest-lib-prefix=lib/
  29. ###########################################################
  30. #
  31. # Used libraries ...
  32. # Used by: core libraries
  33. # Used by: module-misc-beanshell
  34. jaxp-jar-file=gnujaxp.jar
  35. servlet-jar-file=servlet.jar
  36. junit-jar-file=junit.jar
  37. ##############################################################
  38. #
  39. # Generated files ...
  40. jcommon-jar-file=${jcommon.name}-${jcommon.version}.jar
  41. jcommon-bundle-file=${jcommon.name}-${jcommon.version}-bundle.jar
  42. jcommon-junit-jar-file=${jcommon.name}-${jcommon.version}-junit.jar
  43. jcommon-xml-jar-file=${jcommon.name}-xml-${jcommon.version}.jar
  44. jcommon-xml-bundle-file=${jcommon.name}-xml-${jcommon.version}-bundle.jar