Skip to content
Snippets Groups Projects
Commit 22bd49bf authored by david_williams's avatar david_williams
Browse files

work for refactoring

parent 0bca7f32
No related branches found
No related tags found
No related merge requests found
#########################################################################
#
# WTP BUILD PROPERTIES
# Created by: Naci Dai, Eteration A.S.
#########################################################################
mapVersionTag=HEAD
buildType=I
build.distribution=wtp
relengroot=
releng=releng
releng.builder=releng.wtpbuilder
# Set this to the relative path for the
# directory to be use for the current build.
# It must be relative to the buildHome
# Final name will include the component and build type
build.current=build
# Set this to the relative path for the
# directory that keeps the downloaded drivers (local repository)
# It must be relative to the buildHome
build.local.repository=downloads
# Set this to the relative path for the
# directory to be use for the current test pass.
# It must be relative to the buildHome
# Final name will include the component and build type
build.tests=test
# Set this to the relative path for the
# directory to be use for the current peformance test pass.
# It must be relative to the buildHome
build.perf.tests=perf-current
# javacFailOnError must be false otherwise the
# build will terminated at the first compile error
javacFailOnError=false
......@@ -78,7 +104,7 @@ build.perf.tests=perf-current
base.location=eclipse
# This is the working directory in which wtp
# This is the working directory in which
# build process will do its job
# It is relative to the build.current
build.directory=workdir
......@@ -92,6 +118,22 @@ cvsServer=dev.eclipse.org
cvsProtocol=ext
cvsUser=david_williams
# needs to be valid committer id, and ext to tag (non trial) builds
mapVersionTag=HEAD
mapCvsProtocol=pserver
mapCvsUser=davidw
# This parameter is specific to the compiler
# being used (JDT Compiler, in our case).
# 'showversion' causes the version of JDT Compiler to be
# printed to the compiler log file.
compilerArg=-showversion -encoding ISO-8859-1 -warn:-discouraged,serial
##################################################
# Asks the compiler for verbose output. This should be set to true in order for *.bin.log files to be generated when
# using the JDT Compiler Adapter to compile.
javacVerbose=true
#############################################################
# Other inline resolved properties
......
<project
default="build"
basedir=".">
<project name="build" default="build" basedir=".">
<!-- Note to be cross-platform, "environment variables" are only appropriate for
<!-- = = = standard properties pattern = = = -->
<!--
Note to be cross-platform, "environment variables" are only appropriate for
some variables, e.g. ones we set, since properties are case sensitive, even if
the environment variables on your operating system are not, e.g. it will
be ${env.Path} not ${env.PATH} on Windows -->
<property environment="env" />
<!--
Let users override standard properties, if desired.
If directory, file, or some properties do not exist,
then standard properties will be used.
-->
<property file="${env.LOCAL_BUILD_PROPERTIES_DIR}/${ant.project.name}.properties" />
<!-- load standard properties for production environment -->
<property file="${env.STANDARD_PROPERTIES_DIR}/${ant.project.name}.properties" />
<!-- = = = end standard properties pattern = = = -->
<target
name="build"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment