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=1 17 18# if file does not exist, it will be created; if it does, it will be modified 19#file=/builds/transfer/files/master/downloads/builds-eclipse-3.3.xml 20file=../data/builds-eclipse-3.4.xml 21 22# required 23project=Eclipse 24branch=HEAD 25version=3.3.0 26buildID=I20060922-0010 27feedURL=http://download.eclipse.org/eclipse/downloads/builds-eclipse.xml 28buildURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%% 29 30# optional build alias, like 3.3M3 31buildAlias=I20060922-0010 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=/eclipse/downloads/drops/%%buildID%%/ 38buildConfigURL= 39buildLogURL= 40buildMapURL=directory.txt 41 42# optional 43releaseNotesURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%%/buildNotes.php 44updateManagerURL= 45downloadsURL=http://download.eclipse.org/eclipse/downloads/ 46 47# optional: one of NONE|UNSIGNED|SIGNREADY|BUILDREADY|SIGNED 48jarSigningStatus= 49 50# optional: one of NONE|BUILDCOMPLETE|UMSITEREADY|CALLISTOSITEREADY|COMPLETE, or 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= 58 59#optional 60JUnitTestURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%%/testResults.php 61performanceTestURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%%/performance/performance.php 62APITestURL= 63 64# values to set for test results in quints of id,os,ws,arch,status,id,os,ws,arch,status,... 65JUnitTestResults=\ 660,win32,win,x86,UNKNOWN,\ 670,linux,gtk,x86,UNKNOWN,\ 680,linux,gtk,x86_64,UNKNOWN,\ 690,linux,gtk,ppc,UNKNOWN,\ 700,solaris8,gtk,x86,UNKNOWN,\ 710,aix,motif,x86,UNKNOWN,\ 720,hp-ux,motif,x86,UNKNOWN,\ 730,macosx,carbon,ppc,UNKNOWN 74performanceTestResults=\ 75RHEL4-3GHz-2.5GB,linux,gtk,x86,UNKNOWN,\ 76winxp-3GHz-2GB,win32,win,x86,UNKNOWN,\ 77RHEL3-3GHz-2GB,linux,gtk,x86,UNKNOWN,\ 78winxp-2GHz-512MB,win32,win,x86,UNKNOWN 79APITestResults= 80 81# values to set for release bundles in quints of os,ws,arch,name/type,filename,os,ws,arch,name/type,filename... 82# only need the filename; the full http URL can be assembled from buildURL + "/download.php?dropFile=" + filename or buildURL (switched to ftp://) + "/" + filename 83# eg., win32,win,SDK,eclipse-SDK-%%buildAlias%%-win32.zip,linux,gtk,SDK,eclipse-SDK-%%buildAlias%%-linux-gtk.tar.gz 84Releases=\ 85win32,win,x86,SDK,eclipse-SDK-%%buildAlias%%-win32.zip,\ 86linux,gtk,x86,SDK,eclipse-SDK-%%buildAlias%%-linux-gtk.tar.gz 87 88######################################## 89 90# options for publishing files - need either an scp target or a cvs root/path, or both 91# file (above) is required too 92 93# /path/to/cvs/executable 94cvsExec=/usr/bin/cvs 95# user@cvsServer:/path/to/cvs/root 96cvsRoot= 97# cvs/module/path 98cvsPath=www/news 99# /tmp/folder/path/for/checkout 100cvsTemp= 101 102# /path/to/scp/executable 103scpExec=/usr/bin/scp 104# user@server:/path/to/destination/file.xml - destintion folder MUST ALREADY EXIST 105scpTarget= 106 107# 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 108sshExec=/usr/bin/ssh 109