Reputation: 198258
From the document of sbt, I see there are 3 scope axis in sbt:
For project
and task
, I can use command:
projects
tasks
to see the list of them of the project.
But how to see the configs?
Upvotes: 4
Views: 458
Reputation: 74679
It'd be ivyConfigurations
.
> help ivyConfigurations
The defined configurations for dependency management. This may be different
from the configurations for Project settings.
> ivyConfigurations
[info] List(compile, runtime, test, provided, optional, compile-internal,
runtime-internal, test-internal, plugin, sources, docs, pom, scala-tool)
Upvotes: 6