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