Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'releng/maps/build.cfg')
-rw-r--r--releng/maps/build.cfg33
1 files changed, 23 insertions, 10 deletions
diff --git a/releng/maps/build.cfg b/releng/maps/build.cfg
index 2aa1d8de3..ab7375f6d 100644
--- a/releng/maps/build.cfg
+++ b/releng/maps/build.cfg
@@ -1,20 +1,33 @@
-builderVersion=v200801110558
-
-#v200801110431
-
-#builderVersion=v200801032045
-
-
+builderVersion=v200801110730
eclipse.builder=org.eclipse.releng.basebuilder
-#eclipse.builder.version=M3_34
-eclipse.builder.version=RC4_33
+eclipse.builder.version=M3_34
# uncomment if its desired to 'force' fetch of eclipse builder
# (if not already defined from elsewhere)
eclipse.builder.fetch=true
-
# WTP specific builder
wtpBuildTools.url=http://download.eclipse.org/webtools/wtpBuildTools/drops/R3.0/T-T20080103173003-20080103173003/updateSite/plugins
wtpBuildTools.file=org.eclipse.wtp.releng.tools_1.0.0.v200801031730.jar
+# This parameter is specific to the compiler
+# being used (JDT Compiler, in our case).
+# 'showversion' causes the version of JDT Compiler to be
+# printed to the compiler log file.
+#compilerArg=-showversion -encoding ISO-8859-1 -warn:-discouraged,serial,raw
+compilerArg=-showversion -encoding ISO-8859-1 -warn:-serial,raw,typeHiding,unchecked
+
+#############################################################
+# Other inline resolved properties
+pde.builder.path=${env.BASE_BUILDERS}/${eclipse.builder.version}/${eclipse.builder}
+# Beginning with 33M5, the startup.jar was removed. Currently, in basebuilder,
+# this launcher is provided without version number. If we ever move to use plain
+# eclipse, we'll need a bit of script find and rename (or set the variable).
+# to ever "go backwards" this one variable could be ${pde.builder.path}/startup.jar
+eclipse.launcher=${pde.builder.path}/plugins/org.eclipse.equinox.launcher.jar
+#eclipse.launcher=${pde.builder.path}/startup.jar
+
+# in 3.2 based builds, pde's directory no longer has version number
+#pde.build.scripts=${pde.builder.path}/plugins/org.eclipse.pde.build_${eclipse.base.version}/scripts
+pde.build.scripts=${pde.builder.path}/plugins/org.eclipse.pde.build/scripts
+buildDirectory=${env.PROJECT_PROJECTS}/${projectname}/${build.directory}

Back to the top