AW: Creating a fileset from a list of filenames

2010-01-20 Thread Jan.Materne
>I've written a custom ant task that performs Checkstyle only >on modified >files. Or on files modified since some revision. > >The purpose is to gradually introduce a code quality policy on legacy >projects. > >I plan to submit a patch back, meantime if you need it *now*, >then email me >(uses

AW: Creating a fileset from a list of filenames

2010-01-20 Thread Jan.Materne
Jan >-Ursprüngliche Nachricht- >Von: jasper.blues [mailto:jasper.reloa...@gmail.com] >Gesendet: Mittwoch, 20. Januar 2010 08:41 >An: user@ant.apache.org >Betreff: Re: Creating a fileset from a list of filenames > > >I've written a custom ant

Re: Creating a fileset from a list of filenames

2010-01-19 Thread jasper.blues
> > > > > The contents of this e-mail are intended for the named addressee only. It > contains information that may be confidential. Unless you are the named > addressee or an authorized designee, you may not copy or use it, or > disclose it to anyone else. If you rec

Re: Creating a fileset from a list of filenames

2009-11-04 Thread David Weintraub
> > On Tue, Nov 3, 2009 at 1:33 PM, Wray, Nathan wrote: > Hi David, > > It has to do with the procedures I'm trying to piggyback onto. The ant > target creates some required code review documentation. The goal is to > have the ant target fail, rather than having the commit fail as you > typically

RE: Creating a fileset from a list of filenames

2009-11-03 Thread Wray, Nathan
ist Subject: Re: Creating a fileset from a list of filenames Just curious: Why are you using Ant for this? Why not have a post-commit script that runs the check on these files? Or, even better, use Hudson which is a continuous build system. It'll automatically run your build everytime someo

Re: Creating a fileset from a list of filenames

2009-11-03 Thread David Weintraub
Just curious: Why are you using Ant for this? Why not have a post-commit script that runs the check on these files? Or, even better, use Hudson which is a continuous build system. It'll automatically run your build everytime someone does a Subversion checkin. Plus, it has a CheckStyle plugin whic

Re: Creating a fileset from a list of filenames

2009-11-03 Thread Matt Benson
--- On Tue, 11/3/09, Wray, Nathan wrote: > From: Wray, Nathan > Subject: Creating a fileset from a list of filenames > To: user@ant.apache.org > Date: Tuesday, November 3, 2009, 7:16 AM > Hi All; > > > > I'm trying to identify modified java files in

Creating a fileset from a list of filenames

2009-11-03 Thread Wray, Nathan
Hi All; I'm trying to identify modified java files in an SVN working copy and run checkstyle on these files. So far I've got a property with a list of everything modified like: /path/file1;/path/file2;/path/file3 It seems like I need something the opposite of pathconvert to turn this p