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
My use case is that I have a multi-module repository, and I want to run this task on some, but not all, of the modules. I'd like it to be "opt out" so that new modules by default have it added, but that it gets skipped for the ones that shouldn't need it (this is related to #40)
Something like unusedCompileDependencies / enabled := false inside a module's .settings() block.
I think I should be able to put together a pull request that adds this behavior, if it's something you'd merge in
Right now it's possible to hack this in like so:
(project in file("blahblah")).settings(
unusedCompileDependencies :=Def.task(Set.empty[Dependency]).value,
)
The text was updated successfully, but these errors were encountered:
My use case is that I have a multi-module repository, and I want to run this task on some, but not all, of the modules. I'd like it to be "opt out" so that new modules by default have it added, but that it gets skipped for the ones that shouldn't need it (this is related to #40)
Something like
unusedCompileDependencies / enabled := false
inside a module's.settings()
block.I think I should be able to put together a pull request that adds this behavior, if it's something you'd merge in
Right now it's possible to hack this in like so:
The text was updated successfully, but these errors were encountered: