|
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 ############# PRODUCT/PACKAGING CONTROL ############# |
|
22 #product=/com.symbian.driver.core/testdriver.product |
|
23 runPackager=true |
|
24 |
|
25 #Set the name of the archive that will result from the product build. |
|
26 #archiveNamePrefix= |
|
27 |
|
28 # The prefix that will be used in the generated archive. |
|
29 archivePrefix=eclipse |
|
30 |
|
31 # The location underwhich all of the build output will be collected. |
|
32 collectingFolder=${archivePrefix} |
|
33 configs=win32,win32,x86 |
|
34 |
|
35 # The list of {os, ws, arch} configurations to build. This |
|
36 # value is a '&' separated list of ',' separate triples. For example, |
|
37 # configs=win32,win32,x86 & linux,motif,x86 |
|
38 # By default the value is *,*,* |
|
39 #configs=win32, win32, x86 & \ |
|
40 # linux, gtk, ppc &\ |
|
41 # linux, gtk, x86 & \ |
|
42 # linux, gtk, x86_64 & \ |
|
43 # linux, motif, x86 & \ |
|
44 # solaris, motif, sparc & \ |
|
45 # solaris, gtk, sparc & \ |
|
46 # aix, motif, ppc & \ |
|
47 # hpux, motif, PA_RISC & \ |
|
48 # macosx, carbon, ppc |
|
49 |
|
50 # By default PDE creates one archive (result) per entry listed in the configs property. |
|
51 # Setting this value to try will cause PDE to only create one output containing all |
|
52 # artifacts for all the platforms listed in the configs property. |
|
53 #groupConfigurations=true |
|
54 |
|
55 #The format of the archive. By default a zip is created using antZip. |
|
56 #The list can only contain the configuration for which the desired format is different than zip. |
|
57 #archivesFormat=win32, win32, x86 - antZip& \ |
|
58 # linux, gtk, ppc - antZip &\ |
|
59 # linux, gtk, x86 - antZip& \ |
|
60 # linux, gtk, x86_64 - antZip& \ |
|
61 # linux, motif, x86 - antZip& \ |
|
62 # solaris, motif, sparc - antZip& \ |
|
63 # solaris, gtk, sparc - antZip& \ |
|
64 # aix, motif, ppc - antZip& \ |
|
65 # hpux, motif, PA_RISC - antZip& \ |
|
66 # macosx, carbon, ppc - antZip |
|
67 |
|
68 #Set to true if you want the output to be ready for an update jar (no site.xml generated) |
|
69 #outputUpdateJars = false |
|
70 |
|
71 #Set to true for Jnlp generation |
|
72 #codebase should be a URL that will be used as the root of all relative URLs in the output. |
|
73 #generateJnlp=false |
|
74 #jnlp.codebase=<codebase url> |
|
75 #jnlp.j2se=<j2se version> |
|
76 |
|
77 #Set to true if you want to sign jars |
|
78 #signJars=false |
|
79 #sign.alias=<alias> |
|
80 #sign.keystore=<keystore location> |
|
81 #sign.storepass=<keystore password> |
|
82 |
|
83 #Arguments to send to the zip executable |
|
84 zipargs= |
|
85 |
|
86 #Arguments to send to the tar executable |
|
87 tarargs= |
|
88 |
|
89 #Control the creation of a file containing the version included in each configuration - on by default |
|
90 #generateVersionsLists=false |
|
91 |
|
92 ############## BUILD NAMING CONTROL ################ |
|
93 # The directory into which the build elements are fetched and where |
|
94 # the build takes place. |
|
95 #buildDirectory=P:/src/tools/buildDirectory |
|
96 |
|
97 # Type of build. Used in naming the build output. Typically this value is |
|
98 # one of I, N, M, S, ... |
|
99 #buildType=I |
|
100 |
|
101 # ID of the build. Used in naming the build output. |
|
102 #buildId=testdriver2 |
|
103 |
|
104 # Label for the build. Used in naming the build output |
|
105 buildLabel=${buildType}.${buildId} |
|
106 |
|
107 # Timestamp for the build. Used in naming the build output |
|
108 timestamp=007 |
|
109 |
|
110 #The value to be used for the qualifier of a plugin or feature when you want to override the value computed by pde. |
|
111 #The value will only be applied to plugin or features indicating build.properties, qualifier = context |
|
112 #forceContextQualifier=<the value for the qualifier> |
|
113 |
|
114 #Enable / disable the generation of a suffix for the features that use .qualifier. |
|
115 #The generated suffix is computed according to the content of the feature |
|
116 #generateFeatureVersionSuffix=true |
|
117 |
|
118 ############# BASE CONTROL ############# |
|
119 # Settings for the base Eclipse components and Java class libraries |
|
120 # against which you are building. |
|
121 # Base location for anything the build needs to compile against. For example, |
|
122 # in most RCP app or a plug-in, the baseLocation should be the location of a previously |
|
123 # installed Eclipse against which the application or plug-in code will be compiled and the RCP delta pack. |
|
124 |
|
125 #base= |
|
126 baseLocation=${base}/eclipse |
|
127 #Os/Ws/Arch/nl of the eclipse specified by baseLocation |
|
128 baseos=win32 |
|
129 basews=win32 |
|
130 basearch=x86 |
|
131 |
|
132 #pluginPath is a list of locations in which to find plugins and features. This list is separated by the platform file separator (; or :) |
|
133 #a location is one of: |
|
134 #- the location of the jar or folder that is the plugin or feature : /path/to/foo.jar or /path/to/foo |
|
135 #- a directory that contains a /plugins or /features subdirectory |
|
136 #- the location of a feature.xml, or for 2.1 style plugins, the plugin.xml or fragment.xml |
|
137 #pluginPath=P:/src/tools/3rdparty;P:/src/tools/test/tools/TDEP/driver;P:/src/tools/test/tools/TDEP/ini;P:/src/tools/test/tools/TDEP/pkg;P:/src/tools/test/tools/TDEP/plugins;P:/src/tools/test/tools/TDEP/script;P:/src/tools/test/tools/TDEP/shared;P:/src/tools/test/tools/TDEP/tef |
|
138 |
|
139 skipBase=true |
|
140 #eclipseURL=<url for eclipse download site> |
|
141 #eclipseBuildId=<Id of Eclipse build to get> |
|
142 #eclipseBaseURL=${eclipseURL}/eclipse-platform-${eclipseBuildId}-win32.zip |
|
143 |
|
144 |
|
145 ############# MAP FILE CONTROL ################ |
|
146 # This section defines CVS tags to use when fetching the map files from the repository. |
|
147 # If you want to fetch the map file from repository / location, change the getMapFiles target in the customTargets.xml |
|
148 |
|
149 skipMaps=true |
|
150 mapsRepo=:pserver:anonymous@example.com/path/to/repo |
|
151 mapsRoot=path/to/maps |
|
152 mapsCheckoutTag=HEAD |
|
153 |
|
154 #tagMaps=true |
|
155 mapsTagTag=v${buildId} |
|
156 |
|
157 |
|
158 ############ REPOSITORY CONTROL ############### |
|
159 # This section defines properties parameterizing the repositories where plugins, fragments |
|
160 # bundles and features are being obtained from. |
|
161 |
|
162 # The tags to use when fetching elements to build. |
|
163 # By default thebuilder will use whatever is in the maps. |
|
164 # This value takes the form of a comma separated list of repository identifier (like used in the map files) and the |
|
165 # overriding value |
|
166 # For example fetchTag=CVS=HEAD, SVN=v20050101 |
|
167 # fetchTag=HEAD |
|
168 skipFetch=true |
|
169 |
|
170 |
|
171 ############# JAVA COMPILER OPTIONS ############## |
|
172 # The location of the Java jars to compile against. Typically the rt.jar for your JDK/JRE |
|
173 #bootclasspath=${java.home}/lib/rt.jar |
|
174 |
|
175 # specific JRE locations to compile against. These values are used to compile bundles specifying a |
|
176 # Bundle-RequiredExecutionEnvironment. Uncomment and set values for environments that you support |
|
177 #CDC-1.0/Foundation-1.0= /path/to/rt.jar |
|
178 #CDC-1.1/Foundation-1.1= |
|
179 #OSGi/Minimum-1.0= |
|
180 #OSGi/Minimum-1.1= |
|
181 #JRE-1.1= |
|
182 #J2SE-1.2= |
|
183 #J2SE-1.3= |
|
184 #J2SE-1.4= |
|
185 #J2SE-1.5= |
|
186 #JavaSE-1.6= |
|
187 #PersonalJava-1.1= |
|
188 #PersonalJava-1.2= |
|
189 #CDC-1.0/PersonalBasis-1.0= |
|
190 #CDC-1.0/PersonalJava-1.0= |
|
191 #CDC-1.1/PersonalBasis-1.1= |
|
192 #CDC-1.1/PersonalJava-1.1= |
|
193 |
|
194 # Specify the output format of the compiler log when eclipse jdt is used |
|
195 logExtension=.log |
|
196 |
|
197 # Whether or not to include debug info in the output jars |
|
198 javacDebugInfo=false |
|
199 |
|
200 # Whether or not to fail the build if there are compiler errors |
|
201 javacFailOnError=true |
|
202 |
|
203 # Enable or disable verbose mode of the compiler |
|
204 javacVerbose=true |
|
205 |
|
206 # Extra arguments for the compiler. These are specific to the java compiler being used. |
|
207 #compilerArg= |
|
208 |
|
209 # 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 |
|
210 javacSource=1.5 |
|
211 |
|
212 # 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. |
|
213 javacTarget=1.5 |
|
214 |
|
215 |