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