I’m developing projects using MyEclipse. I want to deploy the project source to another system which does not have MyEclipse. All of the libraries on both systems are in the same ABSOLUTE directory (/opt/dtv/lib…). The source files are not in the same directory although the lower-level structure is the same on both systems. I want to create ant files that can be used by operations staff to build from my released source. I had hoped that the export ant buildfiles function would work for me. The problem is that all of my libraries appear as relative paths (../../../../opt/dtv/lib…) instead of absolute paths (/opt/dtv/lib…) Is there a way to get absolute path output? I’ve tried various library and variable options, but have not been successful. I hope I’ve just overlooked something.
If I cannot create absolute paths, it would be acceptable to use an internal relative path where my user libraries are all inside my project directory. This would only be acceptable if I do not have to recreate the user libraries for each project.
I really don’t want to have to edit the generated ant file.