I started to convert my project to maven because I needed to use a library that was distributed in binary form over maven only, but after banging my head against the wall on it for far too long I've decided to stop hurting myself and just use Ant. I'd like to just have maven download the jar and all of its transitive dependencies into a directory of my choosing so I can just check them into my SCM as I normally enjoy and be a blissful developer once again. Any ideas how to do that easily?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
maven dependency plugin can potentially solve your problem. If you have a |
|||||
|
|
|
Create an ivy.xml file to list your project's dependencies:
Downloading these jars and their transitive dependencies can now be done in one of two ways. Command-lineIvy can be run as a command line program. The following example will download into a local "lib" directory:
ANT buildivy is best used when integrated into your ANT build. The following example target downloads the jars into a local lib directory and generates a HTML report for dependency analysis.
|
|||
|
