Greetings,
I am having trouble with the <ivy:settings...> tag.
It works for me locally for both ubuntu and xp, but we have hudson servers (and
other folks) running xp that are trying to build and failing.
In my build.xml file i have
<ivy:settings file="${basedir}/../../ivysettings.xml"/>
and the build servers get this error there:
Q:\pv\projects\Common\build\build.xml:57: impossible to configure ivy:settings
with given file: Q:\pv\projects\ivysettings.xml : java.text.ParseException:
failed to load settings from [file:///Q:/pv/projects/ivysettings.xml:]
file:/Q:/pv/projects/ivysettings.xml: io problem while parsing config file: Q
so i thought perhaps if i changed to a file url...
so i did
<ivy:settings url="file://${basedir}/../../ivysettings.xml"/>
and now the errors are:
Q:\pv\projects\Common\build\build.xml:57: impossible to configure ivy:settings
with given url: [file:///pv/projects/ivysettings.xml]
file://Q:/pv/projects/Common/build/../../ivysettings.xml :
java.net.UnknownHostException: Q
It's frustrating because it works for me locally. This code is checked into
clearcase, so we are all seeing the same view. Any ideas?