Freewind
Freewind

Reputation: 198258

How to show all config scope axis?

From the document of sbt, I see there are 3 scope axis in sbt:

  1. project
  2. config
  3. task

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

Answers (1)

Jacek Laskowski
Jacek Laskowski

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

Related Questions