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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
#
# build properties for java part of Grid Engine
#
javac.debug=true
javac.deprecated=true
javac.source=1.4
javac.target=1.4
jgdi.javac.source=1.5
jgdi.javac.target=1.5
#
# License text to be added to docs
#
license_text=<!--___INFO__MARK_BEGIN__-->\n\
The contents of this file are licensed under the <a href="http://gridengine.sunsource.net/Gridengine_SISSL_license.html">Sun Industry Standards Source License version 1.2</a>.<br>\n\
Copyright 2008, Sun Microsystems, Inc.\n\
<!--___INFO__MARK_END__-->
# directory that is used by: ant publish
publish.dir=/gridware/Tools/Apache/htdocs/jaapi
# ------------------------------------------------------------------------------
# Define the hostname of the java build host. If not set every host could be
# the build host.
# if aimk -java is call on more then once architectures parallel it has to
# be set to the fully qualified hostname.
#java.buildhost=
# maxwait time for build.xml file in minutes
maxwait=60
# ------------------------------------------------------------------------------
# AIMK Properties
# ------------------------------------------------------------------------------
# Define the property aimk.remote if the aimk should be executed on a remote
# host. Useful if IDE is not running on compile host.
#
#aimk.remote=true
#
# - Example for starting aimk via rsh on a remote host:
# ---------------------------------------------------
#
# Keep in mind that the rsh does not inherit the environment of the ant
# process. May be some env variables are not set or has different values.
#
#aimk.starter=rsh
#aimk.build_host=<host name>
#
# - Example for starting aimk via ssh on a remote host:
# ---------------------------------------------------
#
#aimk.starter=ssh
#aimk.build_host=<host name>
# needed for jgdi tests and runproxy
#sge.root=<specify in build_private.properties>
#sge.cell=<specify in build_private.properties>
#sge.qmaster_port=<specify in build_private.properties>
#sge.execd_port=<specify in build_private.properties>
# for target runproxy used for webui
#rmiproxy.port=54321
#rmiproxy.name=jgdi
jgdi_libs.dir=/vol2/tools/SW/java
# needed for libs/jgdi/cullconv (mandatory)
# https://javacc.dev.java.net
javacc.home=${jgdi_libs.dir}/javacc-4.0
# needed for Todo.html generation (optional)
tododoclet.jar=${jgdi_libs.dir}/tododoclet/TodoDoclet.jar
# junit jar file classpath
libs.junit.classpath=/vol2/tools/SW/java/junit3.8.1/junit.jar
juti.jar=${sge.srcdir}/CLASSES/juti/juti.jar
jgdi.jar=${sge.srcdir}/lib/jgdi/build/jgdi.jar
|