buildr

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? ...

Parent build file in buildr

I am currently looking at migrating from maven2 to buildr and I am concerned about how get to keep the build scripts DRY. Currently our maven project is defined with parent pom file containing all common build code and is picked up like any other dependency: <parent> <groupId>com.companyname</groupid> <artifactId>parent</artifa...