1###############################################################################
2# Copyright (c) 2005, 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# properties for: RSSFeedCreateFeedTask.java, RSSFeedAddEntryTask.java, RSSFeedGetPropertyTask.java, RSSFeedUpdateEntryTask.java, RSSFeedPublisherTask.java
12
13# NOTE: if values are commented out (#), they must be passed in to Ant via commandline instead (eg., from emf's promoteToEclipse.sh when promoting a build)
14
15# one of 0|1|2
16debug=0
17
18# if file does not exist, it will be created; if it does, it will be modified
19#file=/var/www/emf/feeds/builds-emf-2.3.xml
20file=../data/builds-emf-2.3.xml
21
22# required
23project=EMF
24branch=HEAD
25version=2.3.0
26buildID=S200611091546
27feedURL=http://download.eclipse.org/tools/emf/feeds/builds-emf-2.3.xml
28buildURL=http://www.eclipse.org/emf/downloads/?showAll=1&hlbuild=%%buildID%%#%%buildID%%
29
30# optional build alias, like 2.2.1RC2
31buildAlias=2.3.0M3
32
33# optional build type; one of: N, I, M, S, R; if not provided, will be pulled from buildID above
34buildType=
35
36# optional
37buildDetailURL=http://www.eclipse.org/downloads/download.php?r=1&file=/tools/emf/downloads/drops/%%version%%/%%buildID%%/
38buildConfigURL=build.cfg
39buildLogURL=buildlog.txt
40buildMapURL=directory.txt
41
42# optional
43releaseNotesURL=http://www.eclipse.org/emf/news/release-notes.php?version=%%version%%
44updateManagerURL=http://download.eclipse.org/tools/emf/updates/
45downloadsURL=http://www.eclipse.org/emf/downloads/
46
47# optional: one of NONE|UNSIGNED|SIGNREADY|BUILDREADY|SIGNED 
48jarSigningStatus=
49
50# optional: one of NONE|BUILDCOMPLETE|UMSITEREADY|CALLISTOSITEREADY|COMPLETE 
51coordinatedStatus=CALLISTOSITEREADY
52# optional: timestamp when will be ready (eg., 2006-05-02T20:50:00Z), or 
53# project on which you're waiting (eg., TPTP)
54coordinatedDetails=
55
56# comma or space separated values
57dependencyURLs=http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops/M20060919-1045/eclipse-SDK-M20060919-1045-linux-gtk.tar.gz
58
59# optional
60JUnitTestURL=http://www.eclipse.org/downloads/download.php?r=1&file=/tools/emf/downloads/drops/%%version%%/%%buildID%%/testResults.php
61performanceTestURL=
62APITestURL=
63
64# values to set for test results in quints of id,os,ws,arch,status,id,os,ws,arch,status,... 
65JUnitTestResults=0,ALL,ALL,ALL,PASS
66performanceTestResults=
67APITestResults=
68
69# values to set for release bundles in quints of os,ws,arch,name/type,filename,os,ws,arch,name/type,filename... 
70# only need the filename; the full http URL can be assembled from buildURL + "/download.php?dropFile=" + filename or buildURL (switched to ftp://) + "/" + filename
71# eg., ALL,ALL,ALL,SDK,emf-sdo-xsd-SDK-%%buildAlias%%.zip
72Releases=ALL,ALL,ALL,SDK,emf-sdo-xsd-SDK-%%buildAlias%%.zip
73
74########################################
75
76# options for publishing files - need either an scp target or a cvs root/path, or both
77# file (above) is required too
78
79# /path/to/cvs/executable
80cvsExec=/usr/bin/cvs
81# user@cvsServer:/path/to/cvs/root
82cvsRoot=nickb@dev.eclipse.org:/cvsroot/org.eclipse
83# cvs/module/path
84cvsPath=www/emf/feeds
85# /tmp/folder/path/for/checkout
86cvsTemp=/tmp/tmp-RSSFeedPublisherTask-emf-nickb
87
88# /path/to/scp/executable
89scpExec=/usr/bin/scp
90# user@server:/path/to/destination/folder/ - destination folder MUST ALREADY EXIST
91scpTarget=nickb@download1.eclipse.org:/home/data/httpd/download.eclipse.org/tools/emf/feeds/
92
93# optionally, if the target folder might not exist, you can use ssh to create it before scp'ing the file
94sshExec=/usr/bin/ssh
95
96# for local testing purposes only
97#cvsRoot=nickb@dbzi:/home/cvs
98#cvsPath=tmp/foo
99#scpTarget=nickb@dbzi:/tmp/foo/
100
101