RE: Redirecting compile errors

2008-01-17 Thread Gilles Scokart
> -Original Message- > From: Steve Loughran [mailto:[EMAIL PROTECTED] > Sent: jeudi 17 janvier 2008 12:24 > To: Ant Users List > Subject: Re: Redirecting compile errors > > Peter Reilly wrote: > > On Jan 17, 2008 9:52 AM, Peter Reilly <[EMAIL PROTECTED]&

Re: Redirecting compile errors

2008-01-17 Thread Kevin Jackson
Hi, > >>> and Java 1,3-compatible language features...it has to compile on older > >>> versions. What we can do is have a directory of java6+ code that isnt > >>> built on Java <6. > >> I do not think that the ability to compile ant on < java5 is necessary. > >> > > The reaon I think this is that t

Re: Redirecting compile errors

2008-01-17 Thread Steve Loughran
Peter Reilly wrote: On Jan 17, 2008 9:52 AM, Peter Reilly <[EMAIL PROTECTED]> wrote: On Jan 17, 2008 9:37 AM, Steve Loughran <[EMAIL PROTECTED]> wrote: Peter Reilly wrote: On Jan 17, 2008 12:37 AM, James Abley <[EMAIL PROTECTED]> wrote: What is the base target version for ant development thes

Re: Redirecting compile errors

2008-01-17 Thread Peter Reilly
On Jan 17, 2008 9:52 AM, Peter Reilly <[EMAIL PROTECTED]> wrote: > On Jan 17, 2008 9:37 AM, Steve Loughran <[EMAIL PROTECTED]> wrote: > > Peter Reilly wrote: > > > On Jan 17, 2008 12:37 AM, James Abley <[EMAIL PROTECTED]> wrote: > > > > >> What is the base target version for ant development these d

Re: Redirecting compile errors

2008-01-17 Thread Peter Reilly
On Jan 17, 2008 9:37 AM, Steve Loughran <[EMAIL PROTECTED]> wrote: > Peter Reilly wrote: > > On Jan 17, 2008 12:37 AM, James Abley <[EMAIL PROTECTED]> wrote: > > >> What is the base target version for ant development these days? Java 5? > >> > > It is java5, however, the ant jars need to be able to

Re: Redirecting compile errors

2008-01-17 Thread Steve Loughran
Peter Reilly wrote: On Jan 17, 2008 12:37 AM, James Abley <[EMAIL PROTECTED]> wrote: What is the base target version for ant development these days? Java 5? It is java5, however, the ant jars need to be able to work gracefully in a java1.3 and java1.4 env (i.e. support what can be supported)

Re: Redirecting compile errors

2008-01-16 Thread Peter Reilly
On Jan 17, 2008 12:37 AM, James Abley <[EMAIL PROTECTED]> wrote: > On 16/01/2008, Steve Loughran <[EMAIL PROTECTED]> wrote: > > Toomey, Kevin H (ATS, IT) wrote: > > > It looks like support for JSR199 (java compiler API) would give me what > > > I'm looking for, but I couldn't tell for sure if/when

Re: Redirecting compile errors

2008-01-16 Thread James Abley
On 16/01/2008, Steve Loughran <[EMAIL PROTECTED]> wrote: > Toomey, Kevin H (ATS, IT) wrote: > > It looks like support for JSR199 (java compiler API) would give me what I'm > > looking for, but I couldn't tell for sure if/when that support would be > > available with Ant. > > > The open source sto

Re: Redirecting compile errors

2008-01-16 Thread Steve Loughran
Toomey, Kevin H (ATS, IT) wrote: I agree, if I really need it, I really need to write it (and share). I have a great deal of appreciation and respect for the work done by others to make Ant what it is and am not asking for anything more. I apologize if my statement gave a different impression.

RE: Redirecting compile errors

2008-01-16 Thread Toomey, Kevin H (ATS, IT)
: Steve Loughran [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 16, 2008 10:51 AM To: Ant Users List Subject: Re: Redirecting compile errors Toomey, Kevin H (ATS, IT) wrote: > It looks like support for JSR199 (java compiler API) would give me what I'm > looking for, but I couldn

Re: Redirecting compile errors

2008-01-16 Thread Steve Loughran
Toomey, Kevin H (ATS, IT) wrote: It looks like support for JSR199 (java compiler API) would give me what I'm looking for, but I couldn't tell for sure if/when that support would be available with Ant. The open source story with ant is: if you need a feature, you get to implement it. If you

RE: Redirecting compile errors

2008-01-16 Thread Toomey, Kevin H (ATS, IT)
hanks, Kevin -Original Message- From: James Abley [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 15, 2008 5:06 PM To: Ant Users List Subject: Re: Redirecting compile errors On 10/01/2008, Toomey, Kevin H (ATS, IT) <[EMAIL PROTECTED]> wrote: > Hi, > > I'm using a Java c

Re: Redirecting compile errors

2008-01-15 Thread James Abley
On 10/01/2008, Toomey, Kevin H (ATS, IT) <[EMAIL PROTECTED]> wrote: > Hi, > > I'm using a Java class to execute an Ant project, and am unable to direct > compile errors to the log file used by my BuildLogger. > > Here's an abbreviated version of my code: > > Project p = new Project(); > p.init();

Redirecting compile errors

2008-01-10 Thread Toomey, Kevin H (ATS, IT)
Hi, I'm using a Java class to execute an Ant project, and am unable to direct compile errors to the log file used by my BuildLogger. Here's an abbreviated version of my code: Project p = new Project(); p.init(); p.setUserProperty("ant.file", "common.xml") //more on this later DefaultLogger logg