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
@2m whats wrong with depending on?
I mean you depend on, just via the unsafe way
I think what you might want to do is collect all the module graphs in the whole build
you can do that with sbt's ScopeFilter and .all API
and then in `DependenciesDirective` look that moduleName
that would be safe
`paradoxDirectives` is a task key so that's good
yeah, that's how to do it
The text was updated successfully, but these errors were encountered:
…ive (#10)
One downside is that it now requires to populate `paradoxDependenciesModules` on the use side. But on the other hand, the access to the dependency tree is now done without touching the state directly.
Fixes#9
Current implementation is not safe, as it runs sbt task outside of the graph.
From @dwijnand
The text was updated successfully, but these errors were encountered: