3

に内部 Maven リポジトリがありますfile:///some/path/here。sbt アーティファクトをこの場所に公開したいと考えています。以下が機能するはずであることがわかりました。

publishMavenStyle := true

publishTo <<= version { (v: String) =>
  val path = "file:///some/path/here/"
  if (v.trim.endsWith("SNAPSHOT"))
    Some("snapshots" at nexus + "maven-snapshots")
  else
    Some("releases"  at nexus + "maven")
}

ただし、これは次の例外で失敗します。

[info]  delivering ivy file to .../target/scala-2.9.2/ivy-1.0-SNAPSHOT.xml
java.lang.UnsupportedOperationException: URL repository only support HTTP PUT at the moment
    at org.apache.ivy.util.url.BasicURLHandler.upload(BasicURLHandler.java:202)
    at org.apache.ivy.util.FileUtil.copy(FileUtil.java:150)
    at org.apache.ivy.plugins.repository.url.URLRepository.put(URLRepository.java:84)

ファイル パスで指定されたリポジトリに sbt を使用してアーティファクトを公開するにはどうすればよいですか?

4

1 に答える 1