Re: AW: List of file names as arguments to a java task

2006-02-24 Thread Paul Pogonyshev
On 24 February 2006 15:08, ar wrote: > > Thanks for your answer. It's true I'm missing a little the Goggle reflex. > > Here's the complete solution to my problem. > > > > > > > > > > >

Re: AW: List of file names as arguments to a java task

2006-02-24 Thread ar
. Februar 2006 14:54 An: user@ant.apache.org Betreff: List of file names as arguments to a java task Hi all, I'd like to give to provide to my java task a list of file name

Re: List of file names as arguments to a java task

2006-02-24 Thread Kjersti Berg
> > So my problem is to > get a space delimited list of file names and to add it to the list of > arguments to my java command. I had a case where I needed to run a Java program on a set of files. I used the apply task for that, but I don't know if this matches your requirements exactly. As far a

Re: List of file names as arguments to a java task

2006-02-24 Thread ar
Le Thu, 23 Feb 2006 15:20:46 +0100, Mark Russell <[EMAIL PROTECTED]> a écrit: You are telling the compile command to only include the **/*.xml files it probably should be **/*.java No. It's well **/*.xml I want to give as argument. I don't use the "javac" task (compile task) but the "java"

AW: List of file names as arguments to a java task

2006-02-23 Thread Jan.Materne
.apache.org >Betreff: List of file names as arguments to a java task > >Hi all, > >I'd like to give to provide to my java task a list of file

Re: List of file names as arguments to a java task

2006-02-23 Thread Mark Russell
You are telling the compile command to only include the **/*.xml files it probably should be **/*.java ar wrote: > Hi all, > > I'd like to give to provide to my java task a list of file names. I don't > know how to do. > I tried: > > > > > >

List of file names as arguments to a java task

2006-02-23 Thread ar
Hi all, I'd like to give to provide to my java task a list of file names. I don't know how to do. I tried: ... but it doesn't work. The java command I want to get is