mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-24 18:29:03 +00:00
Update `EclipseConventions` so that classpath `whenMerged` changes are applied via `JavaBasePlugin`. Without this change, the `whenMerged` item is added, but then`EclipsePlugin.configureEclipseClasspath` is called from a `project.getPlugins().withType(JavaBasePlugin.class, ...` call. Using a nested call appears to fix the issue, probably because it now runs after `configureEclipseClasspath`. Closes gh-46319