Return-Path: Delivered-To: apmail-ant-user-archive@www.apache.org Received: (qmail 46186 invoked from network); 31 Jan 2008 21:49:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 31 Jan 2008 21:49:48 -0000 Received: (qmail 21974 invoked by uid 500); 31 Jan 2008 21:49:35 -0000 Delivered-To: apmail-ant-user-archive@ant.apache.org Received: (qmail 21946 invoked by uid 500); 31 Jan 2008 21:49:35 -0000 Mailing-List: contact user-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Ant Users List" Reply-To: "Ant Users List" Delivered-To: mailing list user@ant.apache.org Received: (qmail 21935 invoked by uid 99); 31 Jan 2008 21:49:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 13:49:35 -0800 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS,WHOIS_MYPRIVREG X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [206.190.48.112] (HELO web52109.mail.re2.yahoo.com) (206.190.48.112) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 31 Jan 2008 21:49:06 +0000 Received: (qmail 65429 invoked by uid 60001); 31 Jan 2008 21:49:11 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-ID; b=44OsalxAEZlSzJMbDqDAged2JaoniNAYV1lXFQBXcGmXzOgCvhzwYQMrwTwySdwGJnjx6aVEFHrbgOYNAc2x7irnFb56T4geXtimTVZrWcXHu7X68UQTfEGKU479Pq/rs7QHiLCIOSQRH21s45wugO2+zBcsmb/XbpWgNmbaKpg=; X-YMail-OSG: PSzx_u4VM1nCihzPLCfAQ9Q59bBC9I5n8LYpPfptheu6JMW3sASGD6KKG9E4WVQbhfKS1zByi0soquae9avQSnmHyHE5XgCRBUhA2a73mPZfSP5I3D1hd8ywhF_G1ShMbfL7k8yi3r8- Received: from [209.211.169.130] by web52109.mail.re2.yahoo.com via HTTP; Thu, 31 Jan 2008 13:49:11 PST Date: Thu, 31 Jan 2008 13:49:11 -0800 (PST) From: Chuck Holzwarth Subject: Re: Ant and Subversion To: Ant Users List In-Reply-To: <15162188.post@talk.nabble.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-2042071998-1201816151=:63649" Content-Transfer-Encoding: 8bit Message-ID: <918015.63649.qm@web52109.mail.re2.yahoo.com> X-Virus-Checked: Checked by ClamAV on apache.org --0-2042071998-1201816151=:63649 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Not sure of why you would need to create a branch for each build. If you are just trying to keep artifacts, you may want to just put each build into its own directory. I do that by: The build results go into ${release_dir}. Some of the artifacts I produce during the build are the detailed list of changes and the version number of the repository that exists at the time of the build. The code to get the detailed list is as follows: Issuing: ${svn} log --verbose --revision ${release_start_rev}:${targetRevision} ${baseTargetURL} Output will be in: ${release_dir}/svn_log_info.txt I just use an exec for the svn command. You should be able to use the fragments above, along with the subversion manual, to come up with a target to create tags if you need to. The problem you can have is that subversion could change between the beginning of your build and the end of the build if you wait to until you determine if the build is successful to add the branch. If you add the branch at the beginning of the build, you could create a branch for an unsuccessful build. jpyork wrote: Is it possible to create a task that creates a tag every time you do a build? -- View this message in context: http://www.nabble.com/Ant-and-Subversion-tp15162188p15162188.html Sent from the Ant - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscribe@ant.apache.org For additional commands, e-mail: user-help@ant.apache.org Thank you, Chuck Holzwarth (804) 403-3478 (home) (540) 335-3171 (cell) --------------------------------- Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. --0-2042071998-1201816151=:63649--