| ############################################################################### |
| # Copyright (c) 2010, 2019 IBM Corporation and others. |
| # This program and the accompanying materials |
| # are made available under the terms of the Eclipse Public License 2.0 |
| # which accompanies this distribution, and is available at |
| # https://www.eclipse.org/legal/epl-2.0/ |
| # |
| # SPDX-License-Identifier: EPL-2.0 |
| # |
| # Contributors: |
| # IBM Corporation - initial API and implementation |
| ############################################################################### |
| #!/usr/bin/env bash |
| |
| # common variables used in build.xml script |
| |
| # It is required to specify a top level directory, that will contain all else involved with build, control and output |
| BUILD_HOME=/shared/webtools |
| |
| # Java should be configured per machine, |
| # so this variable point to valid installs |
| |
| JAVA_5_HOME=/shared/webtools/apps/ibm-java2-sdk-5.0-6.0-linux-ppc |
| JAVA_6_HOME=/shared/webtools/apps/ibm-java-ppc-608 |
| |
| |
| # typically the remaining variables not have to be |
| # changed on a local, non-production machine, |
| # as they just "compute" variables based on others |
| |
| JAVA_HOME=${JAVA_5_HOME} |
| JAVA_EXEC_DIR=${JAVA_HOME}/jre/bin/ |
| |
| # platform install. One level above what will contain the 'eclipse' directory. |
| ECLIPSE_INSTALL=${BUILD_HOME}/apps |
| # the directory that contains the eclipse executable |
| ECLIPSE_HOME_36=${ECLIPSE_INSTALL}/eclipseM7 |
| |
| ECLIPSE_EXE=${ECLIPSE_HOME}/eclipse |
| |
| |