From: Seigel, J. <Jam...@av...> - 2005-06-07 15:29:03
|
I will take a look at the fileset approach and see how much damage that will do to the current structure. I have a few questions for the fans however: 1) When using the fileset approach you are getting a list of files. Should the resulting source file only be loaded if it is referenced directly in this list? (probably yes)=20 2) Is it okay that the nested fileset approach doesn't really give a readable reason for why there are nested filesets with in the report block? Meaning, it isn't obvious that this is the location to specify my source files for it to chomp on. 3) When will it stop raining here in calgary? Cheers James. -----Original Message----- From: Jeremy Ryan Thomerson [mailto:je...@th...]=20 Sent: Tuesday, June 07, 2005 9:21 AM To: Mark Doliner; cob...@li... Cc: Seigel, James Subject: Re: [Cobertura-devel] Multiple Source directories I like the JAVAC approach, because like someone earlier in the thread said (Mark?), a user could copy their JAVAC task right into the report task. JT ----- Original Message -----=20 From: "Mark Doliner" <Mar...@sa...> To: <cob...@li...> Cc: "Seigel, James" <Jam...@av...> Sent: Tuesday, June 07, 2005 10:16 AM Subject: RE: [Cobertura-devel] Multiple Source directories I agree. So should we go with using nested filesets, or should we mimic javac? Here's an example of each NESTED FILESETS: <cobertura-report destdir=3D"${coverage.html.dir}"> <fileset dir=3D"${src.dir}"> <include name=3D"**/*.java" /> <exclude name=3D"**/DebuggingHelper*"/> <exclude name=3D"**/Test*"/> </fileset> <fileset dir=3D"${examples.dir}"> <include name=3D"**/*.java" /> </fileset> </cobertura-report> MIMIC JAVAC: <cobertura-report destdir=3D"${coverage.html.dir}"> <src path=3D"${src.dir}"/> <src path=3D"${examples.dir}"/> <include name=3D"net/sourceforge/cobertura/**"/>> <exclude name=3D"**/DebuggingHelper*"/> <exclude name=3D"**/Test*"/> </javac> The one reason I don't like the nested filesets is because calling it "fileset" doesn't really tell you what it's used for. Is it possible to change that to "source" or something? -Mark > -----Original Message----- > From: Jeremy Ryan Thomerson [mailto:je...@th...] > Sent: Tuesday, June 07, 2005 11:07 AM > To: J. Rentrop; Sinke, Mark (GE Healthcare) > Cc: Mark Doliner; Seigel, James; cob...@li... > Subject: Re: [Cobertura-devel] Multiple Source directories > > I had the same reservatoins. We should keep our API > (including our ant file > interface) as consistent between releases as possible, and > especially not > release something that is a public API (basically) that we > are planning on > changing soon. > > Thanks Julien! > > Jeremy ------------------------------------------------------- This SF.Net email is sponsored by: NEC IT Guy Games. How far can you shotput a projector? How fast can you ride your desk chair down the office luge track? If you want to score the big prize, get to know the little guy. Play to win an NEC 61" plasma display: http://www.necitguy.com/?r _______________________________________________ Cobertura-devel mailing list Cob...@li... https://lists.sourceforge.net/lists/listinfo/cobertura-devel |