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