Re: ComponentHelper replacement

2006-06-04 Thread Steve Loughran
Stephen McConnell (DPML) wrote: -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED] Sent: Friday, 26 May 2006 10:59 PM To: Ant Developers List Subject: Re: ComponentHelper replacement Wolfgang Häfelinger wrote: My preference is to improve Ant's API. I would

Re: Ant 1.7 release

2006-06-04 Thread Steve Loughran
Antoine Levy-Lambert wrote: Hi, I am having a look at http://wiki.apache.org/ant/Ant17/Planning We are still on the step finding a release manager Do we have any candidates ? I'm tempted to do it but can't as I am three chapters out from finishing the text of the book, then its all the

svn commit: r411613 - in /ant/antlibs/antunit/trunk: docs/expectfailure.html docs/index.html src/main/org/apache/ant/antunit/AntUnit.java src/main/org/apache/ant/antunit/AssertTask.java src/main/org/a

2006-06-04 Thread stevel
Author: stevel Date: Sun Jun 4 15:34:30 2006 New Revision: 411613 URL: http://svn.apache.org/viewvc?rev=411613view=rev Log: 1. typos in assertTask 2. ExpectFailure now does a substring check for the expectedMessage, not a simple exact match 3. AntUnit actually fails the build if the tests

[EMAIL PROTECTED]: Project svn-antlib-test (in module ant-antlibs) failed

2006-06-04 Thread Gump Integration Build
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project svn-antlib-test has an issue affecting its community integration. This issue

Re: Structure of Ant (OO Design)

2006-06-04 Thread Kev Jackson
On 3 Jun 2006, at 13:16, Hayden Melton wrote: http://www.cs.auckland.ac.nz/~hayden/corpus.htm quote If you're too busy to read my research page, and want to use these graphs to tell a good from bad structure: big red bars are bad. /quote Love that! Still not sure how to interpret the

Re: Ant 1.7 release

2006-06-04 Thread Kev Jackson
On 5 Jun 2006, at 03:08, Steve Loughran wrote: Antoine Levy-Lambert wrote: Hi, I am having a look at http://wiki.apache.org/ant/Ant17/Planning We are still on the step finding a release manager Do we have any candidates ? I'm tempted to do it but can't as I am three chapters out from

Re: Structure of Ant (OO Design)

2006-06-04 Thread Hayden Melton
Is your analysis in any way similar to how PMD defines it's cyclic complexity metric? I always thought that PMD did a good job of warning developers of potentially 'smelly' code. No, it has nothing to do with McCabe's cyclomatic complexity, which basically tries to quantify the complexity of

Re: Structure of Ant (OO Design)

2006-06-04 Thread Kev Jackson
On 5 Jun 2006, at 10:07, Hayden Melton wrote: Ant-1.6.5 there are 117 .java files involved in a big dependency cycle. That is the height of the biggest red bar. The yellow bars show the distribution of another metric I have devised CRSS which aims to quantify how flat the structure of a

Re: [EMAIL PROTECTED]: Project svn-antlib-test (in module ant-antlibs) failed

2006-06-04 Thread Kev Jackson
Hi all, Just trying these myself and so far no problems. Not sure what happened with gump, but all tests are passing as I run them on my machine against trunk. I will say that it's taking a long time to run each test (could be my machine is very slow) Spikefish:~/projects/ant-svn kj$

Re: Structure of Ant (OO Design)

2006-06-04 Thread Hayden Melton
So you analyse each of the source files to determine which other source files they depend on. This seems to be a Java-centric analysis in that it relies on the source files containing a class each? Is that correct? Ie would this be able to analyse source files that contain many classes