Ant and Java 1.6 in trunk

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Ant and Java 1.6 in trunk

Jacques Le Roux
Administrator
Hi,

In trunk main build.xml file, should we not change
<javac srcdir="tools/src" debug="on" deprecation="off" destdir="tools/build/classes" compiler="javac1.5" target="1.5" source="1.5"/>
to
<javac srcdir="tools/src" debug="on" deprecation="off" destdir="tools/build/classes" compiler="javac1.6" target="1.6" source="1.6"/>
and also all <javac15> in  all build.xml files?

Jacques




Reply | Threaded
Open this post in threaded view
|

Re: Ant and Java 1.6 in trunk

Adam Heath-2
Jacques Le Roux wrote:

> Hi,
>
> In trunk main build.xml file, should we not change
> <javac srcdir="tools/src" debug="on" deprecation="off"
> destdir="tools/build/classes" compiler="javac1.5" target="1.5"
> source="1.5"/>
> to
> <javac srcdir="tools/src" debug="on" deprecation="off"
> destdir="tools/build/classes" compiler="javac1.6" target="1.6"
> source="1.6"/>
> and also all <javac15> in  all build.xml files?

Sure, remove all the old-style javac presetdefs.  I'm the one who did
this originally.

Reply | Threaded
Open this post in threaded view
|

Re: Ant and Java 1.6 in trunk

Adam Heath-2
Adam Heath wrote:

> Jacques Le Roux wrote:
>> Hi,
>>
>> In trunk main build.xml file, should we not change
>> <javac srcdir="tools/src" debug="on" deprecation="off"
>> destdir="tools/build/classes" compiler="javac1.5" target="1.5"
>> source="1.5"/>
>> to
>> <javac srcdir="tools/src" debug="on" deprecation="off"
>> destdir="tools/build/classes" compiler="javac1.6" target="1.6"
>> source="1.6"/>
>> and also all <javac15> in  all build.xml files?
>
> Sure, remove all the old-style javac presetdefs.  I'm the one who did
> this originally.

btw, I'm working on this, and a few other minor build tweaks.

Reply | Threaded
Open this post in threaded view
|

Re: Ant and Java 1.6 in trunk

Jacques Le Roux
Administrator
From: "Adam Heath" <[hidden email]>

> Adam Heath wrote:
>> Jacques Le Roux wrote:
>>> Hi,
>>>
>>> In trunk main build.xml file, should we not change
>>> <javac srcdir="tools/src" debug="on" deprecation="off"
>>> destdir="tools/build/classes" compiler="javac1.5" target="1.5"
>>> source="1.5"/>
>>> to
>>> <javac srcdir="tools/src" debug="on" deprecation="off"
>>> destdir="tools/build/classes" compiler="javac1.6" target="1.6"
>>> source="1.6"/>
>>> and also all <javac15> in  all build.xml files?
>>
>> Sure, remove all the old-style javac presetdefs.  I'm the one who did
>> this originally.
>
> btw, I'm working on this, and a few other minor build tweaks.

So I let you deal with that
Jacques