nebula-project-plugin
nebula-project-plugin copied to clipboard
integTest source set folder should include the resources of main and test source set
Hi, my integration tests are failing as i have some yml file in my main source set under resources. I don't want to duplicate them between the main and the integTest source set.
currently this fixes my issue:
dependencies {
integTestCompile sourceSets.main.getOutput()
integTestCompile sourceSets.test.getOutput()
}