Store all dependent jar files in directory
I use buildr for my build process. My project setup: Project A -> Project B Project A requires ant.jar So, I want to create an output looking the following: target/a.jar target/lib/b.jar target/lib/ant.jar So far, I only managed to create a.jar inside target/ How can I persist the dependent jar files? ...