This reverts commit c9bf98c8872c5baa82f0142e1c25ce7fe1a7112d.
@@ -49,6 +49,10 @@ public class ManagementConfigurationPlugin implements Plugin<Project> {
);
}));
});
+ plugins.withType(PropDepsPlugin.class, (propDepsPlugin -> {
+ configurations.getByName("optional").extendsFrom(management);
+ configurations.getByName("provided").extendsFrom(management);
+ }));
}