nebula-project-plugin icon indicating copy to clipboard operation
nebula-project-plugin copied to clipboard

integTest source set folder should include the resources of main and test source set

Open ezraroi opened this issue 8 years ago • 0 comments

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()
}

ezraroi avatar Feb 20 '17 06:02 ezraroi