Using IntelliJ 14 and the 'idea' plugin in Gradle 2.2 for generating IntelliJ projects. I'm able to add a new Test Sources Root for integration tests in the following way:
idea {
module {
testSourceDirs += file('src/integrationTest/java')
}
}
However, I have not found a way to add a corresponding Test Resources Root located at 'src/integrationTest/resources'. Any ideas on how to do this? Many thanks in advance.
-Daniel