Skip to content

Commit

Permalink
Fix project notation
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-vieira committed Sep 17, 2024
1 parent b9c5959 commit 4c211d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public void apply(Project project) {

// Add test-features plugin as a test cluster dependency by default
if (project.findProject(":plugins:test-features") != null) {
pluginsConfiguration.getDependencies().add(project.getDependencies().create(":plugins:test-features"));
pluginsConfiguration.getDependencies().add(project.getDependencies().project(Map.of("path", ":plugins:test-features")));
}

// Create configuration for aggregating historical feature metadata
Expand Down

0 comments on commit 4c211d4

Please sign in to comment.