Hey, I have a project that depends on Google's gdata-1.45.0 which is a bunch of 43 different JARs and each JAR has its own version number. I guess what I'm looking for is a way to say that my project depends on gdata-1.45.0 and Ivy retrieves the 43 JARs for me without me having to define each one individually such as gdata-calendar-2.0.jar.
I was looking into using something lile... <dependency org="google" name="gdata" rev="1.45.0"> <include name="*"/> </dependency> ... but I don't think I understand what the purpose of <include/> is and what it does. Thanks, James