Wendy Smoak wrote:
Where does 'maven.dependency.classpath' get created? I only see it referenced from the Maven Java Plugin, yet if I try <ant:echo>${maven.dependency.classpath}</ant:echo> in a preGoal to java:compile, it's blank.
To see the value of an ant path, fileset, dirset or filelist you can use the ant "pathconvert" task. The following fragment is from the Ant manual page for the task. When the ant reference is converted to a property, echo will display its value.
Converts a nested <path> or reference to a Path, FileSet, DirSet, or FileList into a path form for a particular platform, and stores the result in a given property. It can also be used when you need to convert a Path, FileSet, or DirSet into a list, separated by a given character, such as a comma or space, or, conversely, to convert a list of files in a FileList into a path. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]