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