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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 # Whether or not to include debug info in the output jars | 276 # Whether or not to include debug info in the output jars |
277 javacDebugInfo=true | 277 javacDebugInfo=true |
278 | 278 |
279 # Whether or not to fail the build if there are compiler errors | 279 # Whether or not to fail the build if there are compiler errors |
280 javacFailOnError=true | 280 javacFailOnError=true |
281 | 281 |
282 # Enable or disable verbose mode of the compiler | 282 # Enable or disable verbose mode of the compiler |
283 javacVerbose=false | 283 javacVerbose=false |
284 | 284 |
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:lines,vars,source | 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 |