Aydın Toprak wrote:
Thanks for everyone;

I have solved the problem.
The problem is all about the libraries (.jar files) that we have to add the ant runtime which is in the eclipse(window->preferances->ant->runtime)...

I used to add the related libraries like j2ee.jar... however whenever I add those important libraries to the runtime enviroment and close the window, every thing that I have added dissapears (as far as I understood, ant envirement didnt include them!) ... but when I added thoses libraries under the global entries, I have succeded... now everthing stays :)...

it is a dramtic stiuation for a proffessional..
but I am still learning.. :)


You shouldnt be setting your classpath up this way. instead declare a path that explicitly includes a copy of j2ee.jar that you have somewhere in your project libraries.

<path id="j2ee.path" >
        <fileset file="lib/j2ee.jar" />
</path>

then use it in compiles

<javac ... classpathref="j2ee.path" >


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to