You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: