I have two projects, project A and Project B. Both are written in groovy and use gradle as their build system.
Project A requires project B. This holds for both th
For Gradle 1.5
1.5
task testJar(type: Jar, dependsOn: testClasses) { from sourceSets.test.java classifier "tests" }