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 #############
28product=/plugin or feature id/path/to/.product
29runPackager=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 
36archivePrefix=android-eclipse
37
38# The location underwhich all of the build output will be collected.
39collectingFolder=${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 *,*,*
45configs = *, *, *
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)
76outputUpdateJars = 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
94zipargs=
95
96#Arguments to send to the tar executable
97tarargs=
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.
105buildDirectory=.
106
107# Type of build.  Used in naming the build output.  Typically this value is
108# one of I, N, M, S, ...
109buildType=build
110
111# ID of the build.  Used in naming the build output.
112# forceContextQualifer = build label
113buildId=${forceContextQualifier}
114
115# Label for the build.  Used in naming the build output
116buildLabel=${buildId}
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
136baseLocation=${ECLIPSE_HOME}
137#Os/Ws/Arch/nl of the eclipse specified by baseLocation
138# Note: These default values may be overridden by the build_plugins script
139baseos=linux
140basews=gtk
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=v${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=
202#J2SE-1.5=
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=true
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.
224compilerArg=-warn:none
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
227javacSource=1.6
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.
230javacTarget=1.6
231
232################### CUSTOM PROPERTIES #######################################
233# repository location for update site
234# comment out - this is passed in from command line 
235#updateSiteSource=${buildDirectory}/sites/external
236# where to place update site build
237updateSiteRoot=${user.home}/www/no_crawl/
238updateSiteFolder=${archivePrefix}
239updateSiteDestination=${updateSiteRoot}/${updateSiteFolder}
240