ndai | b8cedc8 | 2005-09-13 18:00:32 +0000 | [diff] [blame] | 1 | ############################################################################### |
| 2 | # Copyright (c) 2003, 2004 IBM Corporation and others. |
| 3 | # All rights reserved. This program and the accompanying materials |
| 4 | # are made available under the terms of the Common Public License v1.0 |
| 5 | # which accompanies this distribution, and is available at |
| 6 | # http://www.eclipse.org/legal/cpl-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 | ############# CVS CONTROL ################ |
| 22 | # The CVS tag to use when fetching the map files from the repository |
| 23 | mapVersionTag=HEAD |
david_williams | d4f18b5 | 2006-05-23 03:14:55 +0000 | [diff] [blame^] | 24 | runPackager=true |
ndai | b8cedc8 | 2005-09-13 18:00:32 +0000 | [diff] [blame] | 25 | ############## BUILD / GENERATION CONTROL ################ |
| 26 | # The directory into which the build elements will be fetched and where |
| 27 | # the build will take place. |
| 28 | buildDirectory=c:/dev/build |
| 29 | |
| 30 | # Type of build. Used in naming the build output. Typically this value is |
| 31 | # one of I, N, M, S, ... |
| 32 | buildType=I |
| 33 | |
| 34 | # ID of the build. Used in naming the build output. |
| 35 | buildId=Build |
| 36 | |
| 37 | # Label for the build. Used in naming the build output |
| 38 | buildLabel=${buildType}.${buildId} |
| 39 | |
| 40 | # Timestamp for the build. Used in naming the build output |
| 41 | timestamp=007 |
| 42 | |
| 43 | # Base location for anything the build needs to compile against. For example, |
| 44 | # when building GEF, the baseLocation should be the location of a previously |
| 45 | # installed Eclipse against which the GEF code will be compiled. |
| 46 | baseLocation=c:/dev/eclipse |
| 47 | |
| 48 | |
| 49 | |
| 50 | # The location underwhich all of the build output will be collected. |
| 51 | collectingFolder=eclipse |
| 52 | |
| 53 | # The prefix that will be used in the generated archive. |
| 54 | archivePrefix=eclipse |
| 55 | |
| 56 | # The list of {os, ws, arch} configurations to build. This |
| 57 | # value is a '&' separated list of ',' separate triples. For example, |
| 58 | # configs=win32,win32,x86 & linux,motif,x86 |
| 59 | # By default the value is *,*,* |
| 60 | #configs=*,*,* |
| 61 | |
| 62 | #Arguments to send to the zip executable |
| 63 | #zipargs= |
| 64 | |
| 65 | ############# JAVA COMPILER OPTIONS ############## |
| 66 | # The location of the Java jars to compile against. Typically the rt.jar for your JDK/JRE |
ndai | 0a0e892 | 2006-01-23 18:40:24 +0000 | [diff] [blame] | 67 | #bootclasspath=C:/j2sdk1.4.2_04/jre/lib/rt.jar |
ndai | b8cedc8 | 2005-09-13 18:00:32 +0000 | [diff] [blame] | 68 | |
| 69 | # Whether or not to include debug info in the output jars |
| 70 | javacDebugInfo=false |
| 71 | |
| 72 | # Whether or not to fail the build if there are compiler errors |
| 73 | javacfailonerror=true |
| 74 | |
| 75 | zipargs= |