cherni78
cherni78
Still the same problem with the actual version 7.6.
Unfortunately, no! Respectively no one that I would know.
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 ] } ```