This question is related to Apply same configurations to different tasks
In gradle, I have this piece of configuration:
idea {
module {
excludeDirs -= file("$buildDir/")
sourceDirs += file(generatedSrcDir)
}
}
I have another one for eclipse with same code.
Question:
idea, eclipse {
module {
excludeDirs -= file("$buildDir/")
sourceDirs += file(generatedSrcDir)
}
}
is this possible ?
What you need to do would be written as the following:
but since
eclipse
extension does not exposemodule
method/field it will not work. Unfortunately you need to configure bothidea
andeclipse
separately. Here is a question on configuring additional source folder for eclipse.