cherni78

Results 5 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 ] } ```

I know its not the best solution, but works as a workaround, temporary! You can directly point to your toml file from your version catalog project for a composite build....