我正在尝试使用命令sbt publish
将带有SBT的工件发布到远程Nexus存储库。
我的build.sbt
:
credentials += Credentials("Sonatype Nexus", "nexus.local", "username", "password")
publishTo := Some("Sonatype Nexus" at "http://nexus.local:8080/repository/releases")
但是我得到一个错误:
Repository for publishing is not specified
我成功地使用Maven推送到该存储库。你能帮忙吗?