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/modeling/mdt/feeds/builds-uml2-uml-2.1.xml 20 file=../data/builds-uml2-uml-2.1.xml 21 22 # required 23 project=UML2 24 branch=HEAD 25 version=2.1.0 26 buildID=I200611141702 27 feedURL=http://download.eclipse.org/modeling/mdt/feeds/builds-uml2-uml-2.1.xml 28 buildURL=http://www.eclipse.org/modeling/mdt/downloads/?project=uml2-uml&showAll=1&hlbuild=%%buildID%%#%%buildID%% 29 30 # optional build alias, like 2.0.1RC1 31 buildAlias= 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=/modeling/mdt/uml2-uml/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/modeling/mdt/news/release-notes.php?project=uml2-uml&version=%%version%% 44 updateManagerURL=http://download.eclipse.org/modeling/mdt/updates/?project=uml2-uml 45 downloadsURL=http://www.eclipse.org/modeling/mdt/downloads/?project=uml2-uml#uml2-uml 46 47 # optional: one of NONE|UNSIGNED|SIGNREADY|BUILDREADY|SIGNED 48 jarSigningStatus= 49 50 # optional: one of NONE|BUILDCOMPLETE|UMSITEREADY|CALLISTOSITEREADY|COMPLETE 51 coordinatedStatus= 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 http://www.eclipse.org/downloads/download.php?file=/tools/emf/downloads/drops/2.2.1/S200609210005/emf-sdo-xsd-SDK-2.2.1RC2.zip 58 59 # optional 60 JUnitTestURL=http://www.eclipse.org/downloads/download.php?r=1&file=/modeling/mdt/uml2-uml/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,uml2-SDK-%%buildAlias%%.zip 72 Releases=ALL,ALL,ALL,SDK,uml2-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=khussey@dev.eclipse.org:/cvsroot/org.eclipse 83 # cvs/module/path 84 cvsPath=www/uml2/feeds 85 # /tmp/folder/path/for/checkout 86 cvsTemp=/tmp/RSSFeedPublisherTask-uml2-khussey 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=khussey@download1.eclipse.org:/home/data/httpd/download.eclipse.org/tools/uml2/feeds/ 92 93 # optionally, if the target folder might not exist, you can use ssh to create it before scp'ing the file - only runs if sshMakeDirCommand is defined 94 sshExec=/usr/bin/ssh 95