datahub/gradle/scripts/ide.gradle
Mars Lan a589abbd76 Split the root build script into multiple scripts. (#348)
Split the root build script into multiple scripts
Add coveralls support.
2017-07-10 09:54:08 -07:00

18 lines
303 B
Groovy

apply plugin: 'idea'
subprojects {
apply plugin: 'idea'
apply plugin: 'eclipse'
eclipse {
classpath {
file {
// work around for eclipse plugin bug
whenMerged { classpath ->
classpath.entries.removeAll { it.path.endsWith('pom') }
}
}
}
}
}