Home | History | Annotate | Download | only in buildConfig
      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 
     13 # This file was generated per the instructions located in Eclipse Help>Plug-in Development
     14 # Environment >  Guide > Tasks > Building features and customized for building the
     15 # Android Eclipse plugins.
     16 
     17 #####################
     18 # Parameters describing how and where to execute the build.
     19 # Typical users need only update the following properties:
     20 #    baseLocation - where things you are building against are installed
     21 #    bootclasspath - The base jars to compile against (typicaly rt.jar)
     22 #    configs - the list of {os, ws, arch} configurations to build.  
     23 #
     24 # Of course any of the settings here can be overridden by spec'ing 
     25 # them on the command line (e.g., -DbaseLocation=d:/eclipse
     26 
     27 ############# PRODUCT/PACKAGING CONTROL #############
     28 product=/plugin or feature id/path/to/.product
     29 runPackager=true
     30 
     31 #Set the name of the archive that will result from the product build.
     32 #archiveNamePrefix=
     33 
     34 # The prefix that will be used in the generated archive.
     35 # override default of "eclipse" to aid for external site generation 
     36 archivePrefix=android-eclipse
     37 
     38 # The location underwhich all of the build output will be collected.
     39 collectingFolder=${archivePrefix}
     40 
     41 # The list of {os, ws, arch} configurations to build.  This 
     42 # value is a '&' separated list of ',' separate triples.  For example, 
     43 #     configs=win32,win32,x86 & linux,motif,x86
     44 # By default the value is *,*,*
     45 configs = *, *, *
     46 #configs=win32, win32, x86 & \
     47 #	linux, gtk, ppc &\
     48 # linux, gtk, x86 & \
     49 #	linux, gtk, x86_64 & \
     50 #	linux, motif, x86 & \
     51 #	solaris, motif, sparc & \
     52 #	solaris, gtk, sparc & \
     53 #	aix, motif, ppc & \
     54 #	hpux, motif, PA_RISC & \
     55 #	macosx, carbon, ppc
     56 
     57 # By default PDE creates one archive (result) per entry listed in the configs property.
     58 # Setting this value to try will cause PDE to only create one output containing all 
     59 # artifacts for all the platforms listed in the configs property.
     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.
     64 #archivesFormat=win32, win32, x86 - antZip& \
     65 #	linux, gtk, ppc - antZip &\
     66 #    linux, gtk, x86 - antZip& \
     67 #	linux, gtk, x86_64 - antZip& \
     68 # linux, motif, x86 - antZip& \
     69 #	solaris, motif, sparc - antZip& \
     70 #	solaris, gtk, sparc - antZip& \
     71 #	aix, motif, ppc - antZip& \
     72 #	hpux, motif, PA_RISC - antZip& \
     73 #	macosx, carbon, ppc - antZip
     74 	
     75 #Set to true if you want the output to be ready for an update jar (no site.xml generated)
     76 outputUpdateJars = true
     77 
     78 #Set to true for Jnlp generation
     79 #codebase should be a URL that will be used as the root of all relative URLs in the output.
     80 #generateJnlp=false
     81 #jnlp.codebase=<codebase url>
     82 #jnlp.j2se=<j2se version>
     83 #jnlp.locale=<a locale>
     84 #jnlp.generateOfflineAllowed=true or false generate <offlineAllowed/> attribute in the generated features
     85 #jnlp.configs=${configs}			#uncomment to filter the content of the generated jnlp files based on the configuration being built
     86 
     87 #Set to true if you want to sign jars
     88 #signJars=false
     89 #sign.alias=<alias>
     90 #sign.keystore=<keystore location>
     91 #sign.storepass=<keystore password>
     92 
     93 #Arguments to send to the zip executable
     94 zipargs=
     95 
     96 #Arguments to send to the tar executable
     97 tarargs=
     98 
     99 #Control the creation of a file containing the version included in each configuration - on by default 
    100 #generateVersionsLists=false
    101 
    102 ############## BUILD NAMING CONTROL ################
    103 # The directory into which the build elements are fetched and where
    104 # the build takes place.
    105 buildDirectory=.
    106 
    107 # Type of build.  Used in naming the build output.  Typically this value is
    108 # one of I, N, M, S, ...
    109 buildType=build
    110 
    111 # ID of the build.  Used in naming the build output.
    112 # forceContextQualifer = build label
    113 buildId=${forceContextQualifier}
    114 
    115 # Label for the build.  Used in naming the build output
    116 buildLabel=${buildId}
    117 
    118 # Timestamp for the build.  Used in naming the build output
    119 timestamp=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 
    136 baseLocation=${ECLIPSE_HOME}
    137 #Os/Ws/Arch/nl of the eclipse specified by baseLocation
    138 baseos=linux
    139 basews=gtk
    140 basearch=x86
    141 
    142 #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
    143 filteredDependencyCheck=false
    144 
    145 #this property indicates whether the resolution should be done in development mode (i.e. ignore multiple bundles with singletons)
    146 resolution.devMode=false
    147 
    148 #pluginPath is a list of locations in which to find plugins and features.  This list is separated by the platform file separator (; or :)
    149 #a location is one of:  
    150 #- the location of the jar or folder that is the plugin or feature : /path/to/foo.jar or /path/to/foo
    151 #- a directory that contains a /plugins or /features subdirectory
    152 #- the location of a feature.xml, or for 2.1 style plugins, the plugin.xml or fragment.xml
    153 #pluginPath=
    154 
    155 skipBase=true
    156 eclipseURL=<url for eclipse download site>
    157 eclipseBuildId=<Id of Eclipse build to get>
    158 eclipseBaseURL=${eclipseURL}/eclipse-platform-${eclipseBuildId}-win32.zip
    159 
    160 
    161 ############# MAP FILE CONTROL ################
    162 # This section defines CVS tags to use when fetching the map files from the repository.
    163 # If you want to fetch the map file from repository / location, change the getMapFiles target in the customTargets.xml
    164 
    165 skipMaps=true
    166 mapsRepo=:pserver:anonymous@example.com/path/to/repo
    167 mapsRoot=path/to/maps
    168 mapsCheckoutTag=HEAD
    169 
    170 #tagMaps=true
    171 mapsTagTag=v${buildId}
    172 
    173 
    174 ############ REPOSITORY CONTROL ###############
    175 # This section defines properties parameterizing the repositories where plugins, fragments
    176 # bundles and features are being obtained from. 
    177 
    178 # The tags to use when fetching elements to build.
    179 # By default thebuilder will use whatever is in the maps.  
    180 # This value takes the form of a comma separated list of repository identifier (like used in the map files) and the 
    181 # overriding value
    182 # For example fetchTag=CVS=HEAD, SVN=v20050101
    183 # fetchTag=HEAD
    184 skipFetch=true
    185 
    186 
    187 ############# JAVA COMPILER OPTIONS ##############
    188 # The location of the Java jars to compile against.  Typically the rt.jar for your JDK/JRE
    189 #bootclasspath=${java.home}/lib/rt.jar
    190 
    191 # specific JRE locations to compile against. These values are used to compile bundles specifying a 
    192 # Bundle-RequiredExecutionEnvironment. Uncomment and set values for environments that you support
    193 #CDC-1.0/Foundation-1.0= /path/to/rt.jar
    194 #CDC-1.1/Foundation-1.1=
    195 #OSGi/Minimum-1.0=
    196 #OSGi/Minimum-1.1=
    197 #JRE-1.1=
    198 #J2SE-1.2=
    199 #J2SE-1.3=
    200 #J2SE-1.4=
    201 #J2SE-1.5=
    202 #JavaSE-1.6=
    203 #PersonalJava-1.1=
    204 #PersonalJava-1.2=
    205 #CDC-1.0/PersonalBasis-1.0=
    206 #CDC-1.0/PersonalJava-1.0=
    207 #CDC-1.1/PersonalBasis-1.1=
    208 #CDC-1.1/PersonalJava-1.1=
    209 
    210 # Specify the output format of the compiler log when eclipse jdt is used
    211 logExtension=.log
    212 
    213 # Whether or not to include debug info in the output jars
    214 javacDebugInfo=false 
    215 
    216 # Whether or not to fail the build if there are compiler errors
    217 javacFailOnError=true
    218 
    219 # Enable or disable verbose mode of the compiler
    220 javacVerbose=true
    221 
    222 # Extra arguments for the compiler. These are specific to the java compiler being used.
    223 #compilerArg=
    224 
    225 # 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
    226 javacSource=1.5
    227 
    228 # 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.
    229 javacTarget=1.5
    230 
    231 ################### CUSTOM PROPERTIES #######################################
    232 # repository location for update site
    233 # comment out - this is passed in from command line 
    234 #updateSiteSource=${buildDirectory}/sites/external
    235 # where to place update site build
    236 updateSiteRoot=${user.home}/www/no_crawl/
    237 updateSiteFolder=${archivePrefix}
    238 updateSiteDestination=${updateSiteRoot}/${updateSiteFolder}
    239