scripts/build.properties
author John Kern <johnk@symbian.org>
Tue, 16 Feb 2010 15:33:55 -0800
changeset 158 eea70b5d3a93
parent 157 c68f6790ea55
child 159 137ed78712d1
permissions -rw-r--r--
bug 1901 - fix for nightly build
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
157
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
     1
###############################################################################
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
     2
# Copyright (c) 2003, 2006 IBM Corporation and others.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
     3
# All rights reserved. This program and the accompanying materials
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
     4
# are made available under the terms of the Eclipse Public License v1.0
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
     5
# which accompanies this distribution, and is available at
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
     6
# http://www.eclipse.org/legal/epl-v10.html
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
     7
# 
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
     8
# Contributors:
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
     9
#     IBM Corporation - initial API and implementation
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    10
###############################################################################
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    11
#####################
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    12
# Parameters describing how and where to execute the build.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    13
# Typical users need only update the following properties:
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    14
#    baseLocation - where things you are building against are installed
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    15
#    bootclasspath - The base jars to compile against (typicaly rt.jar)
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    16
#    configs - the list of {os, ws, arch} configurations to build.  
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    17
#
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    18
# Of course any of the settings here can be overridden by spec'ing 
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    19
# them on the command line (e.g., -DbaseLocation=d:/eclipse
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    20
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    21
#The type of the top level element we are building,  generally "feature"
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    22
topLevelElementType = feature
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    23
#The id of the top level element we are building
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    24
topLevelElementId = org.symbian.tools.wrttools.feature
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    25
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    26
############# PRODUCT/PACKAGING CONTROL #############
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    27
# product=/plugin or feature id/path/to/.product
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    28
product=/home/symbian/scratch/build_dir/046/workspace/wrttools/org.symbian.tools.wrttools.product/wrt-ide.product
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    29
runPackager=true
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    30
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    31
#Set the name of the archive that will result from the product build.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    32
#archiveNamePrefix=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    33
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    34
# The prefix that will be used in the generated archive.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    35
archivePrefix=eclipse
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    36
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    37
# The location underwhich all of the build output will be collected.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    38
collectingFolder=${archivePrefix}
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    39
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    40
# The list of {os, ws, arch} configurations to build.  This 
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    41
# value is a '&' separated list of ',' separate triples.  For example, 
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    42
#     configs=win32,win32,x86 & linux,motif,x86
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    43
# By default the value is *,*,*
158
eea70b5d3a93 bug 1901 - fix for nightly build
John Kern <johnk@symbian.org>
parents: 157
diff changeset
    44
#configs = *, *, *
eea70b5d3a93 bug 1901 - fix for nightly build
John Kern <johnk@symbian.org>
parents: 157
diff changeset
    45
configs=win32, win32, x86 & \
eea70b5d3a93 bug 1901 - fix for nightly build
John Kern <johnk@symbian.org>
parents: 157
diff changeset
    46
	linux, gtk, x86 & \
eea70b5d3a93 bug 1901 - fix for nightly build
John Kern <johnk@symbian.org>
parents: 157
diff changeset
    47
 	macos, cocoa, x86
eea70b5d3a93 bug 1901 - fix for nightly build
John Kern <johnk@symbian.org>
parents: 157
diff changeset
    48
157
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    49
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    50
# By default PDE creates one archive (result) per entry listed in the configs property.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    51
# Setting this value to true will cause PDE to only create one output containing all 
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    52
# artifacts for all the platforms listed in the configs property.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    53
# To control the output format for the group, add a "group, group, group - <format>" entry to the
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    54
# archivesFormat. 
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    55
#groupConfigurations=true
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    56
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    57
#The format of the archive. By default a zip is created using antZip.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    58
#The list can only contain the configuration for which the desired format is different than zip.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    59
#archivesFormat=win32, win32, x86 - antZip& \
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    60
#	linux, gtk, ppc - antZip &\
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    61
#    linux, gtk, x86 - antZip& \
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    62
#	linux, gtk, x86_64 - antZip& \
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    63
# linux, motif, x86 - antZip& \
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    64
#	solaris, motif, sparc - antZip& \
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    65
#	solaris, gtk, sparc - antZip& \
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    66
#	aix, motif, ppc - antZip& \
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    67
#	hpux, motif, PA_RISC - antZip& \
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    68
#	macosx, carbon, ppc - antZip
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    69
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    70
#Allow cycles involving at most one bundle that needs to be compiled with the rest being binary bundles.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    71
allowBinaryCycles = true
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    72
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    73
#Sort bundles depenedencies across all features instead of just within a given feature.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    74
#flattenDependencies = true
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    75
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    76
#Parallel compilation, requires flattenedDependencies=true
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    77
#parallelCompilation=true
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    78
#parallelThreadCount=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    79
#parallelThreadsPerProcessor=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    80
	
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    81
#Set to true if you want the output to be ready for an update jar (no site.xml generated)
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    82
#outputUpdateJars = false
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    83
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    84
#Set to true for Jnlp generation
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    85
#codebase should be a URL that will be used as the root of all relative URLs in the output.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    86
#generateJnlp=false
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    87
#jnlp.codebase=<codebase url>
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    88
#jnlp.j2se=<j2se version>
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    89
#jnlp.locale=<a locale>
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    90
#jnlp.generateOfflineAllowed=true or false generate <offlineAllowed/> attribute in the generated features
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    91
#jnlp.configs=${configs}			#uncomment to filter the content of the generated jnlp files based on the configuration being built
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    92
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    93
#Set to true if you want to sign jars
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    94
#signJars=false
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    95
#sign.alias=<alias>
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    96
#sign.keystore=<keystore location>
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    97
#sign.storepass=<keystore password>
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    98
#sign.keypass=<key password>
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    99
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   100
#Arguments to send to the zip executable
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   101
zipargs=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   102
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   103
#Arguments to send to the tar executable
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   104
tarargs=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   105
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   106
#Control the creation of a file containing the version included in each configuration - on by default 
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   107
#generateVersionsLists=false
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   108
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   109
############## BUILD NAMING CONTROL ################
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   110
# The directory into which the build elements are fetched and where
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   111
# the build takes place.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   112
buildDirectory=${user.home}/eclipse.build
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   113
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   114
# Type of build.  Used in naming the build output.  Typically this value is
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   115
# one of I, N, M, S, ...
158
eea70b5d3a93 bug 1901 - fix for nightly build
John Kern <johnk@symbian.org>
parents: 157
diff changeset
   116
buildType=N
157
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   117
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   118
# ID of the build.  Used in naming the build output.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   119
buildId=TestBuild
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   120
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   121
# Label for the build.  Used in naming the build output
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   122
buildLabel=${buildType}.${buildId}
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   123
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   124
# Timestamp for the build.  Used in naming the build output
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   125
timestamp=007
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   126
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   127
#The value to be used for the qualifier of a plugin or feature when you want to override the value computed by pde.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   128
#The value will only be applied to plugin or features indicating build.properties, qualifier = context 
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   129
#forceContextQualifier=<the value for the qualifier>
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   130
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   131
#Enable / disable the generation of a suffix for the features that use .qualifier. 
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   132
#The generated suffix is computed according to the content of the feature   
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   133
#generateFeatureVersionSuffix=true
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   134
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   135
############# BASE CONTROL #############
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   136
# Settings for the base Eclipse components and Java class libraries 
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   137
# against which you are building.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   138
# Base location for anything the build needs to compile against.  For example,
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   139
# in most RCP app or a plug-in,  the baseLocation should be the location of a previously
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   140
# installed Eclipse against which the application or plug-in code will be compiled and the RCP delta pack.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   141
158
eea70b5d3a93 bug 1901 - fix for nightly build
John Kern <johnk@symbian.org>
parents: 157
diff changeset
   142
base=/usr/eclipse/JEE
157
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   143
baseLocation=${base}/eclipse
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   144
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   145
eclipseLocation=/usr/eclipse
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   146
equinoxLauncherPluginVersion=1.0.201.R35x_v20090715
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   147
pdeBuildPluginVersion=3.5.1.R35x_20090820
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   148
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   149
#Folder containing repositories whose content is needed to compile against
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   150
#repoBaseLocation=${base}/repos
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   151
#Folder where the content of the repositories from ${repoBaseLocation} will be made available as a form suitable to be compiled against
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   152
#transformedRepoLocation=${base}/transformedRepos
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   153
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   154
#Os/Ws/Arch/nl of the eclipse specified by baseLocation
158
eea70b5d3a93 bug 1901 - fix for nightly build
John Kern <johnk@symbian.org>
parents: 157
diff changeset
   155
baseos=linux
eea70b5d3a93 bug 1901 - fix for nightly build
John Kern <johnk@symbian.org>
parents: 157
diff changeset
   156
basews=GTK
157
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   157
basearch=x86
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   158
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   159
#this property indicates whether you want the set of plug-ins and features to be considered during the build to be limited to the ones reachable from the features / plugins being built
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   160
filteredDependencyCheck=false
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   161
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   162
#this property indicates whether the resolution should be done in development mode (i.e. ignore multiple bundles with singletons)
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   163
resolution.devMode=false
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   164
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   165
#pluginPath is a list of locations in which to find plugins and features.  This list is separated by the platform file separator (; or :)
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   166
#a location is one of:  
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   167
#- the location of the jar or folder that is the plugin or feature : /path/to/foo.jar or /path/to/foo
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   168
#- a directory that contains a /plugins or /features subdirectory
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   169
#- the location of a feature.xml, or for 2.1 style plugins, the plugin.xml or fragment.xml
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   170
#pluginPath=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   171
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   172
skipBase=true
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   173
eclipseURL=<url for eclipse download site>
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   174
eclipseBuildId=<Id of Eclipse build to get>
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   175
eclipseBaseURL=${eclipseURL}/eclipse-platform-${eclipseBuildId}-win32.zip
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   176
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   177
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   178
############# MAP FILE CONTROL ################
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   179
# This section defines CVS tags to use when fetching the map files from the repository.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   180
# If you want to fetch the map file from repository / location, change the getMapFiles target in the customTargets.xml
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   181
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   182
skipMaps=true
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   183
mapsRepo=:pserver:anonymous@example.com/path/to/repo
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   184
mapsRoot=path/to/maps
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   185
mapsCheckoutTag=HEAD
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   186
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   187
#tagMaps=true
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   188
mapsTagTag=v${buildId}
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   189
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   190
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   191
############ REPOSITORY CONTROL ###############
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   192
# This section defines properties parameterizing the repositories where plugins, fragments
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   193
# bundles and features are being obtained from. 
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   194
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   195
# The tags to use when fetching elements to build.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   196
# By default thebuilder will use whatever is in the maps.  
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   197
# This value takes the form of a comma separated list of repository identifier (like used in the map files) and the 
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   198
# overriding value
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   199
# For example fetchTag=CVS=HEAD, SVN=v20050101
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   200
# fetchTag=HEAD
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   201
skipFetch=true
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   202
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   203
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   204
############# JAVA COMPILER OPTIONS ##############
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   205
# The location of the Java jars to compile against.  Typically the rt.jar for your JDK/JRE
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   206
#bootclasspath=${java.home}/lib/rt.jar
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   207
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   208
# specific JRE locations to compile against. These values are used to compile bundles specifying a 
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   209
# Bundle-RequiredExecutionEnvironment. Uncomment and set values for environments that you support
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   210
#CDC-1.0/Foundation-1.0= /path/to/rt.jar
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   211
#CDC-1.1/Foundation-1.1=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   212
#OSGi/Minimum-1.0=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   213
#OSGi/Minimum-1.1=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   214
#JRE-1.1=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   215
#J2SE-1.2=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   216
#J2SE-1.3=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   217
#J2SE-1.4=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   218
#J2SE-1.5=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   219
#JavaSE-1.6=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   220
#PersonalJava-1.1=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   221
#PersonalJava-1.2=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   222
#CDC-1.0/PersonalBasis-1.0=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   223
#CDC-1.0/PersonalJava-1.0=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   224
#CDC-1.1/PersonalBasis-1.1=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   225
#CDC-1.1/PersonalJava-1.1=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   226
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   227
# Specify the output format of the compiler log when eclipse jdt is used
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   228
logExtension=.log
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   229
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   230
# Whether or not to include debug info in the output jars
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   231
javacDebugInfo=false 
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   232
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   233
# Whether or not to fail the build if there are compiler errors
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   234
javacFailOnError=true
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   235
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   236
# Enable or disable verbose mode of the compiler
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   237
javacVerbose=true
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   238
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   239
# Extra arguments for the compiler. These are specific to the java compiler being used.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   240
#compilerArg=
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   241
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   242
# Default value for the version of the source code. This value is used when compiling plug-ins that do not set the Bundle-RequiredExecutionEnvironment or set javacSource in build.properties
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   243
javacSource=1.5
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   244
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   245
# Default value for the version of the byte code targeted. This value is used when compiling plug-ins that do not set the Bundle-RequiredExecutionEnvironment or set javacTarget in build.properties.
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   246
javacTarget=1.5
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   247
c68f6790ea55 ant build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
   248