Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: cb12a070d86e1b90f438af8e466c99fd895923f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
## BEGIN PROJECT BUILD PROPERTIES ##

thirdPartyDownloadLicenseAcceptance="I accept"

projectid=modeling.emf
zipPrefix=emf-xsd
incubation=
version=2.6.0
branch=HEAD
mainFeatureToBuildID=org.eclipse.emf.build
testFeatureToBuildID=org.eclipse.emf.tests

# for windows, do testLocal instead of test
build.steps=buildUpdate,buildExtra,buildTests,generateDigests,testLocal,publish,cleanup

compilerArg=-enableJavadoc -encoding ISO-8859-1
flattenDependencies=true
parallelCompilation=true
generateFeatureVersionSuffix=true
individualSourceBundles=true

#noclean=false
#skipSign=true
#skipPack=true

# site(s) to add to/enable in the user's Eclipse when searching this project's update site metadata
associate.sites=\
http://download.eclipse.org/rt/rap/1.3/tooling/,\
http://download.eclipse.org/rt/rap/1.3/runtime/

# instead of an SDK zip, point at a repo so we can use the same platform wherever you build
repositoryURLs=${associate.sites},\
http://download.eclipse.org/releases/helios/,\
http://download.eclipse.org/eclipse/updates/3.6-I-builds/,\
http://download.eclipse.org/eclipse/updates/3.6milestones/

# Main eclipse mirror sometimes foo's up due to wonky mirrors, but always works when ref'd by build.eclipse.org
#http://download.eclipse.org/releases/helios/
# Alternate mirror for when eclipse.org is misbehaving. May not be up to date, however.
#http://download.jboss.org/jbosstools/updates/helios/
# Or, you can mirror a local copy of helios (rsync -aP nickb@build.eclipse.org:~/downloads/releases/helios/* /home/nboldt/tmp/Eclipse_Repos/helios/) and use that:
#file:/home/nboldt/tmp/Eclipse_Repos/helios/

#if using a repo instead of an SDK, must list IUs to install into target
IUsToInstall=org.eclipse.sdk.feature.group
#+org.eclipse.sdk.ide+org.eclipse.core.net+org.eclipse.equinox.common+org.eclipse.core.runtime+org.eclipse.debug.core+org.eclipse.rcp.feature.group
# TODO: add org.eclipse.rap.runtime.sdk.feature.group ?

# because we can't install the rap sdk into Eclipse, unpack the runtime zip instead
dependencyURLs=http://download.eclipse.org/rt/rap/1.3/rap-runtime-1.3.0-M5-20100201-1223.zip
#http://download.eclipse.org/eclipse/downloads/drops/S-3.6M6-201003121448/eclipse-SDK-3.6M6-linux-gtk-ppc.tar.gz

# generic settings work on local (uses Eclipse's JVM settings) and on build.eclipse.org (uses defaults in server.properties)
JAVA14_HOME=${JAVA_HOME}
JAVA50_HOME=${JAVA_HOME}
JAVA60_HOME=${JAVA_HOME}
JAVADOC14_HOME=${JAVA_HOME}/bin

## END PROJECT BUILD PROPERTIES ##

Back to the top