Re: determine a list of class files to delete based on java files

2014-05-13 Thread KM
Thanks. I will give it a try. From: Stefan Bodewig To: user@ant.apache.org Sent: Tuesday, May 13, 2014 9:45 AM Subject: Re: determine a list of class files to delete based on java files On 2014-05-12, KM wrote: > Wasn't officially on the user

Re: determine a list of class files to delete based on java files

2014-05-13 Thread Stefan Bodewig
On 2014-05-12, KM wrote: > Wasn't officially on the user list yet when I sent this -- so just in > case I am resending it. http://mail-archives.apache.org/mod_mbox/ant-user/201405.mbox/%3C87y4y8jj22.fsf%40v35516.1blu.de%3E Stefan -

Re: determine a list of class files to delete based on java files

2014-05-13 Thread KM
, May 12, 2014 2:27 PM Subject: Re: determine a list of class files to delete based on java files On 2014-05-12 10:45 AM, KM wrote: Wasn't officially on the user list yet when I sent this -- so just in case I am resending it. KM From: KM mailto

Re: determine a list of class files to delete based on java files

2014-05-12 Thread Roedy Green
On 2014-05-12 10:45 AM, KM wrote: > Wasn't officially on the user list yet when I sent this -- so just in case I > am resending it. > KM > > > > From: KM > To: "user@ant.apache.org" > Sent: Wednesday, May 7, 2014 11:47 AM > Subject: determine a list of class

Re: determine a list of class files to delete based on java files

2014-05-12 Thread KM
Wasn't officially on the user list yet when I sent this -- so just in case I am resending it. KM From: KM To: "user@ant.apache.org" Sent: Wednesday, May 7, 2014 11:47 AM Subject: determine a list of class files to delete based on java files Hi All, I n

Re: determine a list of class files to delete based on java files

2014-05-12 Thread Dominique Devienne
On Sun, May 11, 2014 at 7:56 PM, Stefan Bodewig wrote: >> I need to figure out a way to get a list of the java files in my >> structure and then delete the corresponding class files. Just be aware/remember that it's not 1-to-1, i.e. a single .java can generate more than on .class file, because of

Re: determine a list of class files to delete based on java files

2014-05-11 Thread Stefan Bodewig
On 2014-05-07, KM wrote: > Hi All, > I need to figure out a way to get a list of the java files in my > structure and then delete the corresponding class files.   for example > if I have 2 java files a/one.java  and b/two.java, I want to determine > that the list is: > a/one.java > b/two.java >