I've been trying to download an external jar Jsoup by creating a packager.xml file.
When I try to building the file I get back an error which says
".......ivy2\packager\build\org.jsoup\jsoup\1.6.1\packager.xml is not a valid XML document"
The following are the changes I've made in my ivysettings.xml
<settings defaultResolver="default"/>
<resolvers>
<ibiblio name="default" m2compatible="true"/>
<packager name="packager" buildRoot="${user.home}/.ivy2/packager/build" resourceCache="${user.home}/.ivy2/packager/cache" preserveBuildDirectories="false">
<ivy pattern="file:///${ivy.settings.dir}/[organisation]/[module]/[revision]/ivy.xml"/>
<artifact pattern="file:///${ivy.settings.dir}/packager.xml"/>
</packager>
</resolvers>
<modules>
<module organisation="org.jsoup" name="jsoup" resolver="packager"/>
</modules>
the following is the packager.xml file that I created,
<packager-module version="1.0">
<property name="name" value="${ivy.packager.module}"/>
<property name="version" value="${ivy.packager.revision}"/>
<property name="packagename" value="${name}-${version}"/>
<resource dest="archive" url="http://jsoup.org/$packagename.jar" />
<build>
<move file="archive/${packagename}.jar" tofile="artifacts/jars/${name}.jar"/>
</build>
</packager-module>
The error,
[ivy:resolve] :: org.jsoup#jsoup;1.6.1: C:\blah....\blah.ivy2\packager\build\org.jsoup\jsoup\1.6.1\packager.xml is not a valid XML document.
I've tried doing all I could to make it a valid xml document but still the error doesn't revert......Can you please give some insight into this issue.
Thanks