从 sbt 的文档中,我看到 sbt 中有 3 个范围轴:
对于projectand task,我可以使用命令:
projects
tasks
Run Code Online (Sandbox Code Playgroud)
查看项目的列表。
但是如何查看配置呢?
它会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)