Hi, I'm using Ivy to get my dependencies and would like it to retrieve the source and javadoc of those when they are available. It would be great to have them in Eclipse while developing.
I'm using: - Eclipse 3.4.1 (Ganymede) - Ivy 2.0.0.final - IvyDE 2.0.0.beta1 I attach my ivy.xml and screenshots of the IvyDE settings I use. If someone could explain what I have to change in ivy.xml and my IvyDE settings I would really appreciate it. I know there recently was a thread about these things, but I didn't understand it well enough to know what to do. Perhaps this could serve as a concrete example. Best regards, Kent
<?xml version="1.0" encoding="UTF-8"?> <ivy-module version="2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd"> <info organisation="net.cookiecompany" module="webcookie" status="integration"/> <configurations> <conf name="runtime" description="" /> <conf name="compile" extends="runtime" description="" /> </configurations> <dependencies> <dependency org="org.apache.wicket" name="wicket" rev="1.3.5" conf="runtime->runtime"> <exclude org="org.apache.portals.bridges" module="portals-bridges-common"/> <exclude org="javax.portlet" module="portlet-api"/> </dependency> <dependency org="org.apache.wicket" name="wicket-spring-annot" rev="1.3.5" conf="runtime->*"/> <dependency org="org.slf4j" name="slf4j-log4j12" rev="1.5.6" conf="runtime->*"/> <dependency org="org.slf4j" name="jcl-over-slf4j" rev="1.5.6" conf="runtime->*"/> <dependency org="javax.servlet" name="servlet-api" rev="2.5" conf="compile->provided"/> <dependency org="org.springframework" name="spring" rev="2.5.6" conf="runtime->runtime"/> <dependency org="mysql" name="mysql-connector-java" rev="5.1.6" conf="runtime->*"/> <dependency org="org.hibernate" name="hibernate-core" rev="3.3.1.GA" conf="runtime->runtime,optional"/> <dependency org="org.hibernate" name="hibernate-annotations" rev="3.4.0.GA" conf="runtime->*"/> <!-- Jakarta CL is re-directed to Simple logging for Java and should never be used. --> <exclude module="commons-logging"/> </dependencies> </ivy-module>
