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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
#___INFO__MARK_BEGIN__
##########################################################################
#
# The Contents of this file are made available subject to the terms of
# the Sun Industry Standards Source License Version 1.2
#
# Sun Microsystems Inc., March, 2001
#
#
# Sun Industry Standards Source License Version 1.2
# =================================================
# The contents of this file are subject to the Sun Industry Standards
# Source License Version 1.2 (the "License"); You may not use this file
# except in compliance with the License. You may obtain a copy of the
# License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
#
# Software provided under this License is provided on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
# See the License for the specific provisions governing your rights and
# obligations concerning the Software.
#
# The Initial Developer of the Original Code is: Sun Microsystems, Inc.
#
# Copyright: 2001 by Sun Microsystems, Inc.
#
# All Rights Reserved.
#
##########################################################################
#___INFO__MARK_END__
#
# build properties for java part of Grid Engine
# Override them with build_private.properties. Other properties you
# might need to set are typically found in nbproject/project.properties in
# each Java component directory.
#
javac.debug=true
javac.deprecated=true
default.sge.javac.source=1.5
default.sge.javac.target=1.5
jgdi.javac.source=1.5
jgdi.javac.target=1.5
jjsv.javac.source=1.5
jjsv.javac.target=1.5
hadoop.javac.source=1.6
hadoop.javac.target=1.6
#
# 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=/usr/share/java
# needed for libs/jgdi/cullconv (mandatory)
# https://javacc.dev.java.net
javacc.home=${jgdi_libs.dir}
# needed for Todo.html generation (optional)
tododoclet.jar=${jgdi_libs.dir}/tododoclet/TodoDoclet.jar
# junit jar file classpath
libs.junit.classpath=${jgdi_libs.dir}/junit.jar
juti.jar=${sge.srcdir}/CLASSES/juti/juti.jar
jgdi.jar=${sge.srcdir}/lib/jgdi/build/jgdi.jar
# For GUI Installer
# From https://swing-layout.dev.java.net/, libswing-layout-java package
# on Debian
libs.swing-layout.classpath=${jgdi_libs.dir}/swing-layout.jar
# The rest of the needed jar paths for GUI installer are set in
# gridengine/source/clients/gui-installer/nbproject/project.properties
# Note that this directory seems to need to be writable, at least if it
# was created by running the IzPack .jar installer. This isn't the
# 3rdparty/IzPack directory.
izpack.home=${jgdi_libs.dir}/IzPack
# The Herd library needs the path to a recent version of Hadoop
# 0.20.2. We currently assume the Cloudera cdh3 distribution from
# http://archive.cloudera.com/, which has packages for Red Hat and
# Debian/Ubuntu.
# This is the directory containing hadoop-core.jar
hadoop.dir=/usr/lib/hadoop-0.20
hadoop.version=0.20.2
file.reference.hadoop-0.20.2-core.jar=${hadoop.dir}/hadoop-core.jar
file.reference.hadoop-0.20.2-tools.jar=${hadoop.dir}/hadoop-tools.jar
|