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
|
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# path to the directory where the base build scripts library and properties
# reside
common.dir=../../../../.common
# path to the local working directory; this directory which will be the target
# for checking out the sources and will be used for the build process
# * this path can be either absolute or relative in any unix environment,
# however, only relative paths are supported on windows, as the cygwin scp
# command does not properly handle colon in local paths
work.dir=./build
# path to the local distributive directory; this directory will contain the
# distributive file, when (if) the build script finishes successfully
dist.dir=./dist
# path to the engine sources within the cvs module; it should be a relative
# path from the module's root, e.g. for 'nbi/engine', where 'nbi is the module
# name, the path should be 'engine'
cvs.path=engine
# name of the engine's distributive file
engine.dist.file.name=nbi-engine.jar
# we do not need to build anything native for the netbeans-specific engine, as it
# does not contain any native components
build.native=false
# custom parameter for the netbeans project build script - in case of the netbeans
# nbi engine - the location of the core engine jar file
nb.custom.parameter=-Dreference.NBI_Engine.jar=${core.engine.dist.file}
# sources parameters; a search-and-replace will be run over the sources after
# check-out, replacing [token] => [value]; regular expressions are not allowed
# * ${sources.params.length} - total number of the parameters
# * indices should start with 1
# * parameters are not i18n compliant
sources.params.length=0
|