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=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 20 file=../data/builds-eclipse-3.4.xml 21 22 # required 23 project=Eclipse 24 branch=HEAD 25 version=3.3.0 26 buildID=I20060922-0010 27 feedURL=http://download.eclipse.org/eclipse/downloads/builds-eclipse.xml 28 buildURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%% 29 30 # optional build alias, like 3.3M3 31 buildAlias=I20060922-0010 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=/eclipse/downloads/drops/%%buildID%%/ 38 buildConfigURL= 39 buildLogURL= 40 buildMapURL=directory.txt 41 42 # optional 43 releaseNotesURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%%/buildNotes.php 44 updateManagerURL= 45 downloadsURL=http://download.eclipse.org/eclipse/downloads/ 46 47 # optional: one of NONE|UNSIGNED|SIGNREADY|BUILDREADY|SIGNED 48 jarSigningStatus= 49 50 # optional: one of NONE|BUILDCOMPLETE|UMSITEREADY|CALLISTOSITEREADY|COMPLETE, or 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= 58 59 #optional 60 JUnitTestURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%%/testResults.php 61 performanceTestURL=http://download.eclipse.org/eclipse/downloads/drops/%%buildID%%/performance/performance.php 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=\ 66 0,win32,win,x86,UNKNOWN,\ 67 0,linux,gtk,x86,UNKNOWN,\ 68 0,linux,gtk,x86_64,UNKNOWN,\ 69 0,linux,gtk,ppc,UNKNOWN,\ 70 0,solaris8,gtk,x86,UNKNOWN,\ 71 0,aix,motif,x86,UNKNOWN,\ 72 0,hp-ux,motif,x86,UNKNOWN,\ 73 0,macosx,carbon,ppc,UNKNOWN 74 performanceTestResults=\ 75 RHEL4-3GHz-2.5GB,linux,gtk,x86,UNKNOWN,\ 76 winxp-3GHz-2GB,win32,win,x86,UNKNOWN,\ 77 RHEL3-3GHz-2GB,linux,gtk,x86,UNKNOWN,\ 78 winxp-2GHz-512MB,win32,win,x86,UNKNOWN 79 APITestResults= 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 84 Releases=\ 85 win32,win,x86,SDK,eclipse-SDK-%%buildAlias%%-win32.zip,\ 86 linux,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 94 cvsExec=/usr/bin/cvs 95 # user@cvsServer:/path/to/cvs/root 96 cvsRoot= 97 # cvs/module/path 98 cvsPath=www/news 99 # /tmp/folder/path/for/checkout 100 cvsTemp= 101 102 # /path/to/scp/executable 103 scpExec=/usr/bin/scp 104 # user@server:/path/to/destination/file.xml - destintion folder MUST ALREADY EXIST 105 scpTarget= 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 108 sshExec=/usr/bin/ssh 109