I have an integration source installed in gradle and it depends on the compilation of my main classes. I installed this by doing
integrationTestClasses.dependsOn 'classes'
Is this a way to do this, or is there a way to establish dependencies on source sets so that this happens automatically? In my block configurationsI already have
integrationTestCompile { extendsFrom testCompile }
integrationTestRuntime { extendsFrom integrationTestCompile, testRuntime }
source
share