Remove recursive project dependencies from Eclipse classpath
This commit is contained in:
parent
de74520286
commit
fc77172d67
|
@ -60,6 +60,13 @@ eclipse.classpath.file.whenMerged {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Remove recursive project dependencies
|
||||||
|
eclipse.classpath.file.whenMerged {
|
||||||
|
entries.findAll { it instanceof ProjectDependency && it.path == ('/' + project.name) }.each {
|
||||||
|
entries.remove(it)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Include project specific settings
|
// Include project specific settings
|
||||||
task eclipseSettings(type: Copy) {
|
task eclipseSettings(type: Copy) {
|
||||||
from rootProject.files(
|
from rootProject.files(
|
||||||
|
|
Loading…
Reference in New Issue