cherni78

Results 4 comments of cherni78

Yes, it is related! The workaround mentioned there works for me too. ``` eclipse.classpath { file.whenMerged { classpath -> classpath.entries.findAll { entry -> entry instanceof org.gradle.plugins.ide.eclipse.model.ProjectDependency && entry.entryAttributes.test } .each...

for me it worked like this: ``` configurations { eclipseExtraClasspath.extendsFrom compileOnly } eclipse.classpath { plusConfigurations += [ configurations.eclipseExtraClasspath ] } ```