Hi, I am using the example from samples\java\withIntegrationTests\ to add a sourceset for integration tests. It configures the source directory as follows:
java.srcDir file('src/integration-test/java')
. The problem is that the default source directory with the name matching the sourset name (“integrationTest”) is still declared and is being created with the following command:
sourceSets.all*.java.srcDirs*.each { it.mkdirs() }
How can I remove the default directory created according to this pattern
[${project.projectDir}/src/${sourceSet.name}/java