OLD | NEW |
1 ############################################################################### | 1 ############################################################################### |
2 # Copyright (c) 2003, 2011 IBM Corporation and others. | 2 # Copyright (c) 2003, 2011 IBM Corporation and others. |
3 # All rights reserved. This program and the accompanying materials | 3 # All rights reserved. This program and the accompanying materials |
4 # are made available under the terms of the Eclipse Public License v1.0 | 4 # are made available under the terms of the Eclipse Public License v1.0 |
5 # which accompanies this distribution, and is available at | 5 # which accompanies this distribution, and is available at |
6 # http://www.eclipse.org/legal/epl-v10.html | 6 # http://www.eclipse.org/legal/epl-v10.html |
7 # | 7 # |
8 # Contributors: | 8 # Contributors: |
9 # IBM Corporation - initial API and implementation | 9 # IBM Corporation - initial API and implementation |
10 # Compuware Corporation - Sebastien Angers <sebastien.angers@compuware.com> | 10 # Compuware Corporation - Sebastien Angers <sebastien.angers@compuware.com> |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 buildId=dart-editor | 169 buildId=dart-editor |
170 | 170 |
171 # Label for the build. Used in naming the build output | 171 # Label for the build. Used in naming the build output |
172 buildLabel=${buildType}.${buildId} | 172 buildLabel=${buildType}.${buildId} |
173 | 173 |
174 # Timestamp for the build. Used in naming the build output | 174 # Timestamp for the build. Used in naming the build output |
175 timestamp=007 | 175 timestamp=007 |
176 | 176 |
177 #The value to be used for the qualifier of a plugin or feature when you want to
override the value computed by pde. | 177 #The value to be used for the qualifier of a plugin or feature when you want to
override the value computed by pde. |
178 #The value will only be applied to plugin or features indicating build.propertie
s, qualifier = context | 178 #The value will only be applied to plugin or features indicating build.propertie
s, qualifier = context |
179 forceContextQualifier=r${build.revision} | 179 forceContextQualifier=@VERSION_QUALIFIER@ |
180 | 180 |
181 #Enable / disable the generation of a suffix for the features that use .qualifie
r. | 181 #Enable / disable the generation of a suffix for the features that use .qualifie
r. |
182 #The generated suffix is computed according to the content of the feature | 182 #The generated suffix is computed according to the content of the feature |
183 #generateFeatureVersionSuffix=true | 183 #generateFeatureVersionSuffix=true |
184 | 184 |
185 ############# BASE CONTROL ############# | 185 ############# BASE CONTROL ############# |
186 # Settings for the base Eclipse components and Java class libraries | 186 # Settings for the base Eclipse components and Java class libraries |
187 # against which you are building. | 187 # against which you are building. |
188 # Base location for anything the build needs to compile against. For example, | 188 # Base location for anything the build needs to compile against. For example, |
189 # in most RCP app or a plug-in, the baseLocation should be the location of a pr
eviously | 189 # in most RCP app or a plug-in, the baseLocation should be the location of a pr
eviously |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 # Extra arguments for the compiler. These are specific to the java compiler bein
g used. | 285 # Extra arguments for the compiler. These are specific to the java compiler bein
g used. |
286 compilerArg=-g -nowarn | 286 compilerArg=-g -nowarn |
287 | 287 |
288 # Default value for the version of the source code. This value is used when comp
iling plug-ins that do not set the Bundle-RequiredExecutionEnvironment or set ja
vacSource in build.properties | 288 # Default value for the version of the source code. This value is used when comp
iling plug-ins that do not set the Bundle-RequiredExecutionEnvironment or set ja
vacSource in build.properties |
289 javacSource=1.6 | 289 javacSource=1.6 |
290 | 290 |
291 # Default value for the version of the byte code targeted. This value is used wh
en compiling plug-ins that do not set the Bundle-RequiredExecutionEnvironment or
set javacTarget in build.properties. | 291 # Default value for the version of the byte code targeted. This value is used wh
en compiling plug-ins that do not set the Bundle-RequiredExecutionEnvironment or
set javacTarget in build.properties. |
292 javacTarget=1.6 | 292 javacTarget=1.6 |
293 | 293 |
294 | 294 |
OLD | NEW |