1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
###########################################################
#
# Global settings ...
libloader.name=libloader
libloader.version=0.3.7
#
# This defines the compiler settings. Optimizing would remove
# the debug information, so we dont do that. This may be selfish,
# but these settings guarantee better bug-reports :)
build.debug=true
build.optimize=false
build.deprecation=true
#
# Make sure that JDK 1.2 compatible class files are generated
build.target=1.3
build.source=1.3
build.retro.jdk=/opt/jdk1.2.2
#
# All path settings are relative to the project root directory
# (..)
#
libdir=/usr/share/java
junit-dir=lib
#
# If you specify a non-empty string, then dont forget the
# trailing / here or your results wont fit your expectations...
#
targetdir=
manifest-lib-prefix=lib/
###########################################################
#
# Used libraries ...
# Used by: core libraries
jcommon-jar-file=jcommon.jar
# Used by: module-cache-oscache, module-cache-ehcache
commons-logging-jar-file=commons-logging.jar
# Used by: module-cache-oscache
oscache-jar-file=optional/oscache-2.3-compat.jar
# Used by: module-cache-ehcache
ehcache-jar-file=ehcache.jar
# Used by: module-factory-wmf
pixie-jar-file=pixie.jar
##############################################################
#
# Generated files ...
libloader-bundle-file=${libloader.name}-${libloader.version}-bundle.jar
libloader-core-jar-file=${libloader.name}-core-${libloader.version}.jar
libloader-jar-file=${libloader.name}-${libloader.version}.jar
module-cache-oscache-jar-file=${libloader.name}-cache-oscache-${libloader.version}.jar
module-cache-ehcache-jar-file=${libloader.name}-cache-ehcache-${libloader.version}.jar
module-factory-wmf-jar-file=${libloader.name}-factory-wmf-${libloader.version}.jar
|