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/modeling/mdt/feeds/builds-uml2-uml-2.1.xml 20file=../data/builds-uml2-uml-2.1.xml 21 22# required 23project=UML2 24branch=HEAD 25version=2.1.0 26buildID=I200611141702 27feedURL=http://download.eclipse.org/modeling/mdt/feeds/builds-uml2-uml-2.1.xml 28buildURL=http://www.eclipse.org/modeling/mdt/downloads/?project=uml2-uml&showAll=1&hlbuild=%%buildID%%#%%buildID%% 29 30# optional build alias, like 2.0.1RC1 31buildAlias= 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=/modeling/mdt/uml2-uml/downloads/drops/%%version%%/%%buildID%%/ 38buildConfigURL=build.cfg 39buildLogURL=buildlog.txt 40buildMapURL=directory.txt 41 42# optional 43releaseNotesURL=http://www.eclipse.org/modeling/mdt/news/release-notes.php?project=uml2-uml&version=%%version%% 44updateManagerURL=http://download.eclipse.org/modeling/mdt/updates/?project=uml2-uml 45downloadsURL=http://www.eclipse.org/modeling/mdt/downloads/?project=uml2-uml#uml2-uml 46 47# optional: one of NONE|UNSIGNED|SIGNREADY|BUILDREADY|SIGNED 48jarSigningStatus= 49 50# optional: one of NONE|BUILDCOMPLETE|UMSITEREADY|CALLISTOSITEREADY|COMPLETE 51coordinatedStatus= 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 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 60JUnitTestURL=http://www.eclipse.org/downloads/download.php?r=1&file=/modeling/mdt/uml2-uml/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,uml2-SDK-%%buildAlias%%.zip 72Releases=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 80cvsExec=/usr/bin/cvs 81# user@cvsServer:/path/to/cvs/root 82cvsRoot=khussey@dev.eclipse.org:/cvsroot/org.eclipse 83# cvs/module/path 84cvsPath=www/uml2/feeds 85# /tmp/folder/path/for/checkout 86cvsTemp=/tmp/RSSFeedPublisherTask-uml2-khussey 87 88# /path/to/scp/executable 89scpExec=/usr/bin/scp 90# user@server:/path/to/destination/folder/ - destination folder MUST ALREADY EXIST 91scpTarget=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 94sshExec=/usr/bin/ssh 95