Home » Eclipse Projects » Eclipse Platform » ANT import->Eclipse
ANT import->Eclipse [message #81420] |
Tue, 24 June 2003 09:44  |
Eclipse User |
|
|
|
hy,
me dayly job (besides others) is, to import sources from a server to
eclipse,
let it compile them and finally i start an an ANT to copy the binaries
to different servers.
....is there any chance also to automate the first manual step within ANT or
whatever, so that it can be done by a fingertip (even by my collegues...) ?
thanx for suggestions,
mike
|
|
| |
Re: ANT import->Eclipse [message #81873 is a reply to message #81828] |
Wed, 25 June 2003 03:56   |
Eclipse User |
|
|
|
well, sorry,
i missed to say that its not cvs, its
a usual server in our intranet, so i import within eclipse from a mountet
drive w:\...
i could copy the files via ant to my hd, but eclipse won't
compile them automatically, wont' it?..thats the problem, i guess it
doesnt like it either...!?
mike
"Yves" <yves@somewhere.com> wrote in message
news:bdbhmv$cjq$1@rogue.oti.com...
> Use the <cvs ...> ANT task to checkout from a CVS server.
> Use the <get ...> ANT task to get your files from an http/ftp server.
>
> mike linz wrote:
> > hy,
> > me dayly job (besides others) is, to import sources from a server to
> > eclipse,
> > let it compile them and finally i start an an ANT to copy the binaries
> > to different servers.
> > ....is there any chance also to automate the first manual step within
ANT or
> > whatever, so that it can be done by a fingertip (even by my
collegues...) ?
> > thanx for suggestions,
> > mike
> >
> >
>
|
|
|
Re: ANT import->Eclipse [message #82508 is a reply to message #81873] |
Wed, 25 June 2003 14:59   |
Eclipse User |
|
|
|
Originally posted by: user.domain.invalid
Why don't you just make the ant script do the compiling? Thats kind of
the main point of ant.....
mike linz wrote:
> well, sorry,
> i missed to say that its not cvs, its
> a usual server in our intranet, so i import within eclipse from a mountet
> drive w:\...
> i could copy the files via ant to my hd, but eclipse won't
> compile them automatically, wont' it?..thats the problem, i guess it
> doesnt like it either...!?
> mike
>
> "Yves" <yves@somewhere.com> wrote in message
> news:bdbhmv$cjq$1@rogue.oti.com...
>
>>Use the <cvs ...> ANT task to checkout from a CVS server.
>>Use the <get ...> ANT task to get your files from an http/ftp server.
>>
>>mike linz wrote:
>>
>>>hy,
>>>me dayly job (besides others) is, to import sources from a server to
>>>eclipse,
>>>let it compile them and finally i start an an ANT to copy the binaries
>>>to different servers.
>>>....is there any chance also to automate the first manual step within
>
> ANT or
>
>>>whatever, so that it can be done by a fingertip (even by my
>
> collegues...) ?
>
>>>thanx for suggestions,
>>>mike
>>>
>>>
>>
>
>
|
|
|
Re: ANT import->Eclipse [message #82537 is a reply to message #81873] |
Wed, 25 June 2003 15:18   |
Eclipse User |
|
|
|
Originally posted by: yves.somewhere.com
Did you try specifying a URL "file:///w:...
mike linz wrote:
> well, sorry,
> i missed to say that its not cvs, its
> a usual server in our intranet, so i import within eclipse from a mountet
> drive w:\...
> i could copy the files via ant to my hd, but eclipse won't
> compile them automatically, wont' it?..thats the problem, i guess it
> doesnt like it either...!?
> mike
>
> "Yves" <yves@somewhere.com> wrote in message
> news:bdbhmv$cjq$1@rogue.oti.com...
>
>>Use the <cvs ...> ANT task to checkout from a CVS server.
>>Use the <get ...> ANT task to get your files from an http/ftp server.
>>
>>mike linz wrote:
>>
>>>hy,
>>>me dayly job (besides others) is, to import sources from a server to
>>>eclipse,
>>>let it compile them and finally i start an an ANT to copy the binaries
>>>to different servers.
>>>....is there any chance also to automate the first manual step within
>
> ANT or
>
>>>whatever, so that it can be done by a fingertip (even by my
>
> collegues...) ?
>
>>>thanx for suggestions,
>>>mike
>>>
>>>
>>
>
>
|
|
|
Re: ANT import->Eclipse [message #82824 is a reply to message #81873] |
Thu, 26 June 2003 05:15   |
Eclipse User |
|
|
|
well, this is getting out of control...;-)
1) its possible to copy the sources with file//..., but i cant tell eclipse
to compile them before distributin the classes...
2) i need to import to eclipse first to check for errors, caus the company
uses jdk1.3 and the client 1.4
so i guess therse is no way to remote control eclipse via ant and i have to
do the job..;-(.
thanks anyway,
mike
"mike linz" <peppi911@hotmail.com> wrote in message
news:bdbkg2$f71$1@rogue.oti.com...
> well, sorry,
> i missed to say that its not cvs, its
> a usual server in our intranet, so i import within eclipse from a mountet
> drive w:\...
> i could copy the files via ant to my hd, but eclipse won't
> compile them automatically, wont' it?..thats the problem, i guess it
> doesnt like it either...!?
> mike
>
> "Yves" <yves@somewhere.com> wrote in message
> news:bdbhmv$cjq$1@rogue.oti.com...
> > Use the <cvs ...> ANT task to checkout from a CVS server.
> > Use the <get ...> ANT task to get your files from an http/ftp server.
> >
> > mike linz wrote:
> > > hy,
> > > me dayly job (besides others) is, to import sources from a server to
> > > eclipse,
> > > let it compile them and finally i start an an ANT to copy the binaries
> > > to different servers.
> > > ....is there any chance also to automate the first manual step within
> ANT or
> > > whatever, so that it can be done by a fingertip (even by my
> collegues...) ?
> > > thanx for suggestions,
> > > mike
> > >
> > >
> >
>
>
|
|
|
Re: ANT import->Eclipse [message #82839 is a reply to message #82824] |
Thu, 26 June 2003 05:40   |
Eclipse User |
|
|
|
Originally posted by: yves.somewhere.com
You can use the <javac ...> ant task to compile sources. You can set an
attribute 'target="1.3"' to get it compiled to JDK1.3, or 'target="1.4"'
for JDK1.4 compatibility.
See http://ant.apache.org/, and chooose manual for more info on the
javac task, and lots of other tasks.
mike linz wrote:
> well, this is getting out of control...;-)
> 1) its possible to copy the sources with file//..., but i cant tell eclipse
> to compile them before distributin the classes...
> 2) i need to import to eclipse first to check for errors, caus the company
> uses jdk1.3 and the client 1.4
>
> so i guess therse is no way to remote control eclipse via ant and i have to
> do the job..;-(.
> thanks anyway,
> mike
>
>
> "mike linz" <peppi911@hotmail.com> wrote in message
> news:bdbkg2$f71$1@rogue.oti.com...
>
>>well, sorry,
>>i missed to say that its not cvs, its
>>a usual server in our intranet, so i import within eclipse from a mountet
>>drive w:\...
>>i could copy the files via ant to my hd, but eclipse won't
>>compile them automatically, wont' it?..thats the problem, i guess it
>>doesnt like it either...!?
>>mike
>>
>>"Yves" <yves@somewhere.com> wrote in message
>>news:bdbhmv$cjq$1@rogue.oti.com...
>>
>>>Use the <cvs ...> ANT task to checkout from a CVS server.
>>>Use the <get ...> ANT task to get your files from an http/ftp server.
>>>
>>>mike linz wrote:
>>>
>>>>hy,
>>>>me dayly job (besides others) is, to import sources from a server to
>>>>eclipse,
>>>>let it compile them and finally i start an an ANT to copy the binaries
>>>>to different servers.
>>>>....is there any chance also to automate the first manual step within
>>
>>ANT or
>>
>>>>whatever, so that it can be done by a fingertip (even by my
>>
>>collegues...) ?
>>
>>>>thanx for suggestions,
>>>>mike
>>>>
>>>>
>>>
>>
>
>
|
|
|
Re: ANT import->Eclipse [message #82870 is a reply to message #82839] |
Thu, 26 June 2003 06:36   |
Eclipse User |
|
|
|
i've seen that theres a section:
Visual Age for Java Tasks
so i put an eye on it and wait for 'eclipse tasks', thats what i need!
thanks for help!
mike
"Yves" <yves@somewhere.com> wrote in message
news:bdef2v$vjc$1@rogue.oti.com...
> You can use the <javac ...> ant task to compile sources. You can set an
> attribute 'target="1.3"' to get it compiled to JDK1.3, or 'target="1.4"'
> for JDK1.4 compatibility.
>
> See http://ant.apache.org/, and chooose manual for more info on the
> javac task, and lots of other tasks.
>
> mike linz wrote:
> > well, this is getting out of control...;-)
> > 1) its possible to copy the sources with file//..., but i cant tell
eclipse
> > to compile them before distributin the classes...
> > 2) i need to import to eclipse first to check for errors, caus the
company
> > uses jdk1.3 and the client 1.4
> >
> > so i guess therse is no way to remote control eclipse via ant and i have
to
> > do the job..;-(.
> > thanks anyway,
> > mike
> >
> >
> > "mike linz" <peppi911@hotmail.com> wrote in message
> > news:bdbkg2$f71$1@rogue.oti.com...
> >
> >>well, sorry,
> >>i missed to say that its not cvs, its
> >>a usual server in our intranet, so i import within eclipse from a
mountet
> >>drive w:\...
> >>i could copy the files via ant to my hd, but eclipse won't
> >>compile them automatically, wont' it?..thats the problem, i guess it
> >>doesnt like it either...!?
> >>mike
> >>
> >>"Yves" <yves@somewhere.com> wrote in message
> >>news:bdbhmv$cjq$1@rogue.oti.com...
> >>
> >>>Use the <cvs ...> ANT task to checkout from a CVS server.
> >>>Use the <get ...> ANT task to get your files from an http/ftp server.
> >>>
> >>>mike linz wrote:
> >>>
> >>>>hy,
> >>>>me dayly job (besides others) is, to import sources from a server to
> >>>>eclipse,
> >>>>let it compile them and finally i start an an ANT to copy the binaries
> >>>>to different servers.
> >>>>....is there any chance also to automate the first manual step within
> >>
> >>ANT or
> >>
> >>>>whatever, so that it can be done by a fingertip (even by my
> >>
> >>collegues...) ?
> >>
> >>>>thanx for suggestions,
> >>>>mike
> >>>>
> >>>>
> >>>
> >>
> >
> >
>
|
|
| |
Re: ANT import->Eclipse [message #83033 is a reply to message #82870] |
Thu, 26 June 2003 09:22  |
Eclipse User |
|
|
|
Originally posted by: yves.somewhere.com
Please vote this bug (maybe some of the tasks you need already exist,
but are undocumented) : https://bugs.eclipse.org/bugs/show_bug.cgi?id=38753
mike linz wrote:
> i've seen that theres a section:
> Visual Age for Java Tasks
> so i put an eye on it and wait for 'eclipse tasks', thats what i need!
> thanks for help!
> mike
>
>
> "Yves" <yves@somewhere.com> wrote in message
> news:bdef2v$vjc$1@rogue.oti.com...
>
>>You can use the <javac ...> ant task to compile sources. You can set an
>>attribute 'target="1.3"' to get it compiled to JDK1.3, or 'target="1.4"'
>>for JDK1.4 compatibility.
>>
>>See http://ant.apache.org/, and chooose manual for more info on the
>>javac task, and lots of other tasks.
>>
>>mike linz wrote:
>>
>>>well, this is getting out of control...;-)
>>>1) its possible to copy the sources with file//..., but i cant tell
>
> eclipse
>
>>>to compile them before distributin the classes...
>>>2) i need to import to eclipse first to check for errors, caus the
>
> company
>
>>>uses jdk1.3 and the client 1.4
>>>
>>>so i guess therse is no way to remote control eclipse via ant and i have
>
> to
>
>>>do the job..;-(.
>>>thanks anyway,
>>>mike
>>>
>>>
>>>"mike linz" <peppi911@hotmail.com> wrote in message
>>>news:bdbkg2$f71$1@rogue.oti.com...
>>>
>>>
>>>>well, sorry,
>>>>i missed to say that its not cvs, its
>>>>a usual server in our intranet, so i import within eclipse from a
>
> mountet
>
>>>>drive w:\...
>>>>i could copy the files via ant to my hd, but eclipse won't
>>>>compile them automatically, wont' it?..thats the problem, i guess it
>>>>doesnt like it either...!?
>>>>mike
>>>>
>>>>"Yves" <yves@somewhere.com> wrote in message
>>>>news:bdbhmv$cjq$1@rogue.oti.com...
>>>>
>>>>
>>>>>Use the <cvs ...> ANT task to checkout from a CVS server.
>>>>>Use the <get ...> ANT task to get your files from an http/ftp server.
>>>>>
>>>>>mike linz wrote:
>>>>>
>>>>>
>>>>>>hy,
>>>>>>me dayly job (besides others) is, to import sources from a server to
>>>>>>eclipse,
>>>>>>let it compile them and finally i start an an ANT to copy the binaries
>>>>>>to different servers.
>>>>>>....is there any chance also to automate the first manual step within
>>>>
>>>>ANT or
>>>>
>>>>
>>>>>>whatever, so that it can be done by a fingertip (even by my
>>>>
>>>>collegues...) ?
>>>>
>>>>
>>>>>>thanx for suggestions,
>>>>>>mike
>>>>>>
>>>>>>
>>>>>
>>>
>
>
|
|
|
Goto Forum:
Current Time: Sun Jul 13 08:09:25 EDT 2025
Powered by FUDForum. Page generated in 0.04993 seconds
|