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
Given a lib A with a runtime dependency B. B is not in the current dependencies, because it's computed using the Compile configuration.
When it computes previous dependencies of A, a dummy module is created that has the previous version of A as its compile dependency, that makes B appear in the previous dependencies, fails the check as a missing library, even if A is not changed since the previous version.
Can we fix it by changing Compile to Runtime for dependencies resolution?
The text was updated successfully, but these errors were encountered:
Given a lib
A
with a runtime dependencyB
.B
is not in the current dependencies, because it's computed using theCompile
configuration.When it computes previous dependencies of
A
, a dummy module is created that has the previous version ofA
as its compile dependency, that makesB
appear in the previous dependencies, fails the check as a missing library, even ifA
is not changed since the previous version.Can we fix it by changing
Compile
toRuntime
for dependencies resolution?The text was updated successfully, but these errors were encountered: