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 16 debug=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 20 file=../data/builds-emf-2.3.xml 21 22 # required 23 project=EMF 24 branch=HEAD 25 version=2.3.0 26 buildID=S200611091546 27 feedURL=http://download.eclipse.org/tools/emf/feeds/builds-emf-2.3.xml 28 buildURL=http://www.eclipse.org/emf/downloads/?showAll=1&hlbuild=%%buildID%%#%%buildID%% 29 30 # optional build alias, like 2.2.1RC2 31 buildAlias=2.3.0M3 32 33 # optional build type; one of: N, I, M, S, R; if not provided, will be pulled from buildID above 34 buildType= 35 36 # optional 37 buildDetailURL=http://www.eclipse.org/downloads/download.php?r=1&file=/tools/emf/downloads/drops/%%version%%/%%buildID%%/ 38 buildConfigURL=build.cfg 39 buildLogURL=buildlog.txt 40 buildMapURL=directory.txt 41 42 # optional 43 releaseNotesURL=http://www.eclipse.org/emf/news/release-notes.php?version=%%version%% 44 updateManagerURL=http://download.eclipse.org/tools/emf/updates/ 45 downloadsURL=http://www.eclipse.org/emf/downloads/ 46 47 # optional: one of NONE|UNSIGNED|SIGNREADY|BUILDREADY|SIGNED 48 jarSigningStatus= 49 50 # optional: one of NONE|BUILDCOMPLETE|UMSITEREADY|CALLISTOSITEREADY|COMPLETE 51 coordinatedStatus=CALLISTOSITEREADY 52 # optional: timestamp when will be ready (eg., 2006-05-02T20:50:00Z), or 53 # project on which you're waiting (eg., TPTP) 54 coordinatedDetails= 55 56 # comma or space separated values 57 dependencyURLs=http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops/M20060919-1045/eclipse-SDK-M20060919-1045-linux-gtk.tar.gz 58 59 # optional 60 JUnitTestURL=http://www.eclipse.org/downloads/download.php?r=1&file=/tools/emf/downloads/drops/%%version%%/%%buildID%%/testResults.php 61 performanceTestURL= 62 APITestURL= 63 64 # values to set for test results in quints of id,os,ws,arch,status,id,os,ws,arch,status,... 65 JUnitTestResults=0,ALL,ALL,ALL,PASS 66 performanceTestResults= 67 APITestResults= 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 72 Releases=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 80 cvsExec=/usr/bin/cvs 81 # user@cvsServer:/path/to/cvs/root 82 cvsRoot=nickb@dev.eclipse.org:/cvsroot/org.eclipse 83 # cvs/module/path 84 cvsPath=www/emf/feeds 85 # /tmp/folder/path/for/checkout 86 cvsTemp=/tmp/tmp-RSSFeedPublisherTask-emf-nickb 87 88 # /path/to/scp/executable 89 scpExec=/usr/bin/scp 90 # user@server:/path/to/destination/folder/ - destination folder MUST ALREADY EXIST 91 scpTarget=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 94 sshExec=/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