如何显示所有配置范围轴?

Fre*_*ind 3 sbt

从 sbt 的文档中,我看到 sbt 中有 3 个范围轴:

  1. 项目
  2. 配置
  3. 任务

对于projectand task,我可以使用命令:

projects
tasks
Run Code Online (Sandbox Code Playgroud)

查看项目的列表。

但是如何查看配置呢?

Jac*_*ski 5

它会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)
Run Code Online (Sandbox Code Playgroud)