Skip to content

Commit

Permalink
Test with getDependencies only. (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
marchermans committed Feb 5, 2024
1 parent 98ce378 commit 7d51d02
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ private Path getJarJarMetadataPath() {

private Metadata createMetadata() {
return new Metadata(
this.configurations.stream().flatMap(config -> config.getAllDependencies().stream())
this.configurations.stream().flatMap(config -> config.getDependencies().stream())
.filter(ModuleDependency.class::isInstance)
.map(ModuleDependency.class::cast)
.map(this::createDependencyMetadata)
Expand Down

0 comments on commit 7d51d02

Please sign in to comment.