Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SBT 控制台中是否有命令强制它解析工件(特别是重新解析 SNAPSHOT 依赖项)?我现在知道的唯一方法是运行干净然后编译(或启动),但这需要更长的时间并且并不总是必要的。
您可以标记所需的依赖项以重新检查它们update:
update
libraryDependencies ++= { "org.specs2" %% "specs2" % "1.10-SNAPSHOT" % "test" changing() }
使用 SBT 重新下载依赖项的 SNAPSHOT 版本
该update命令应该有所帮助。
从任务的文档中:
解决和可选地检索依赖关系,生成报告。
请参阅依赖管理流程。
更重要的是,SNAPSHOT依赖关系本质changing()上是这样,所以不需要在 ModuleID 之后添加任何东西来标记它们。每个update人都应该针对存储库解决它们。
SNAPSHOT
changing()
也许update-classifiers是您正在寻找的东西?否则,请尝试该tasks命令以查看可用的内容。
update-classifiers
tasks