-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
Description
Module
Core
Proposal
A colleague of mine has added a dependency on the junit-jupiter module.
Then our gradle dependency analysis failed, saying we also need to add a dependency onto testcontainers.
Which is not true, since you declare testcontainers as api in junit-jupiter.
The check fails because you don't publish the gradle module metadata, so there is no way for the plugin (or gradle for that sake) to tell that testcontainers is an api dependency.
We have configured junit-jupiter as a dependency-analysis bundle to fix that on our side, now I would like to fix it for all users.