Skip to content

Commit 449a901

Browse files
committed
Remove unnecessary attributes from dependency scope configuration
See gh-46600
1 parent 8b46236 commit 449a901

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

buildSrc/src/main/java/org/springframework/boot/build/aggregation/AggregatorPlugin.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ public void apply(Project target) {
4040
target.getExtensions().add("aggregates", aggregates);
4141
aggregates.all((aggregate) -> {
4242
NamedDomainObjectProvider<DependencyScopeConfiguration> dependencies = target.getConfigurations()
43-
.dependencyScope(aggregate.getName() + "Dependencies",
44-
(configuration) -> configureAttributes(configuration, aggregate, target.getObjects()));
43+
.dependencyScope(aggregate.getName() + "Dependencies");
4544
NamedDomainObjectProvider<ResolvableConfiguration> aggregated = target.getConfigurations()
4645
.resolvable(aggregate.getName(), (configuration) -> {
4746
configuration.extendsFrom(dependencies.get());

0 commit comments

Comments
 (0)