[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
|
[news.eclipse.platform] Re: How to use Ant-Task "eclipse.refreshLocal ?
|
Are you launching the Ant build in the same VM as Eclipse?
The eclipse tasks can only function if the build occurs within the same
build as Eclipse and cannot function in a separate VM.
See the JRE tab for your Ant launch configuration.
HTH
Darins
"Marcel Bruch" <marcel@xxxxxxxxxxxx> wrote in message
news:bv8vbl$uvf$1@xxxxxxxxxxxxxx
> Hi ng,
>
> i tried to use the Ant-Task eclipse.refreshLocal inside eclipse 3.0M5 -
> without success. Can someone help me please and tell me how to use this
> and other "built-in" eclipse tasks?
>
> Ant prints this error message:
> -->
> BUILD FAILED:
> file:D:/eclipse/eclipse3.0M5/workspace/vmdb_dc/test/build.xml:6: Could
> not create task or type of type: eclipse.refreshLocal.
>
> Ant could not find the task or a class this task relies upon.
> [...]
> <--
>
> Thanks for help.
>
> Greets,
> Marcel
>
> my build file:
>
> <?xml version="1.0" encoding="ISO-8859-1" ?>
> <project name="vmdb" default="test" basedir=".">
> <target name="test">
> <eclipse.refreshLocal resource="${basedir}"
> depth="infinite"/>
> </target>
> </project>