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