Re: Wrapper Scripts Once Again

2017-01-18 Thread Christopher BROWN
Hello, I could try using it on Mac. How should I go about testing? -- Christopher On 9 January 2017 at 18:55, Stefan Bodewig wrote: > Hi all > > we've been told the wrapper script is still causing issues on (at least > some versions of) Solaris. I've modified the script to remove all > back

Re: New PropertyHelper to Easily Add Colors to Ant Output

2017-01-18 Thread Christopher BROWN
Hi, Is there a way to detect if Ant is running on a compatible terminal? For example, I sometimes forward Ant's output to a text file, such as "ant sometarget > sometarget.txt"; in such cases, I'd prefer not to include escape codes. Thanks, Christopher On 16 January 2017 at 08:29, Jan Matèrne

Re: Java 9 and javac

2015-09-14 Thread Christopher BROWN
sotms/ -- Christopher On 14 September 2015 at 06:10, Stefan Bodewig wrote: > On 2015-09-13, Christopher BROWN wrote: > > > Java 9's new module system will add extra options for the "javac" > command. > > Are there any plans to provide support for this with Ant? > >

Java 9 and javac

2015-09-13 Thread Christopher BROWN
Hello, Java 9's new module system will add extra options for the "javac" command. Are there any plans to provide support for this with Ant? Thanks, Christopher

Re: WELCOME to user@ant.apache.org

2015-06-14 Thread Christopher BROWN
Hello, Since Java SE 7, URLClassLoader defines a "close()" method which may be useful in the specific case mentioned: http://docs.oracle.com/javase/7/docs/api/java/net/URLClassLoader.html#close() As for the more general case of Windows locking files from Java, as I understand it, it's because the

Re: How should an Ant be created programmatically from another (custom) Ant task?

2015-05-16 Thread Christopher BROWN
Hello Dominique, Thanks, I gave it a try, and it helped! Exactly what I was looking for... -- Christopher On 16 May 2015 at 16:49, Dominique Devienne wrote: > On Sat, May 16, 2015 at 3:38 PM, Christopher BROWN > wrote: > > > I've some doubts about the "crea

How should an Ant be created programmatically from another (custom) Ant task?

2015-05-16 Thread Christopher BROWN
Hello, I've developed a few custom Ant tasks over time, but I need a little help doing something specific to Ant's data types. I've created a task that retrieves a set of files from a server, but the names aren't known in advance, they're determine during execution of the task. I'd like to creat