Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 25659 invoked from network); 20 Feb 2009 13:04:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Feb 2009 13:04:11 -0000 Received: (qmail 41331 invoked by uid 500); 20 Feb 2009 13:04:10 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 41298 invoked by uid 500); 20 Feb 2009 13:04:10 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 41287 invoked by uid 99); 20 Feb 2009 13:04:09 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Feb 2009 05:04:09 -0800 X-ASF-Spam-Status: No, hits=2.6 required=10.0 tests=DNS_FROM_OPENWHOIS,SPF_HELO_PASS,SPF_PASS,WHOIS_MYPRIVREG X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of lists@nabble.com designates 216.139.236.158 as permitted sender) Received: from [216.139.236.158] (HELO kuber.nabble.com) (216.139.236.158) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Feb 2009 13:04:01 +0000 Received: from isper.nabble.com ([192.168.236.156]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1LaV2b-0000Id-3h for dev@ant.apache.org; Fri, 20 Feb 2009 05:03:41 -0800 Message-ID: <22120102.post@talk.nabble.com> Date: Fri, 20 Feb 2009 05:03:41 -0800 (PST) From: Furingstad To: dev@ant.apache.org Subject: Manage compile errors in MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: klas@furingstad.nu X-Virus-Checked: Checked by ClamAV on apache.org Hi We are creating a CI process for a large java projects with an estimated 15-20-thousand java object. It is crucial for the process that we find and report all Compile errors at each build, the problem is that we cant figure this out with ANT's javac task as we cant catch each error without stoping the entire build process via javac's "failonerror" flag. We have tried to use Ant Contribs trycatch task in a for loop but then the compiler fails to sort out dependencies within a package in that we feed the compiler with individual object. Do any of you have knowledge of an extended javac task from which we can catch compile errors in a exception reference or property or can we use the ant Contribs tryctach in a smarter way than what we have done in our example below. I attach our trycatch script: -- View this message in context: http://www.nabble.com/Manage-compile-errors-in-%3Cjavac%3E-tp22120102p22120102.html Sent from the Ant - Dev mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org