4

This is a question very closely related to Publish sbt artifact to filesystem. The difference is that I'm specifying the resolver in the ~/.sbt/repositories file, and don't get to write Resolver.file as the answer specifies.

I'm on sbt 0.13.5. My file looks something like

[repositories]
  local
  myrepo: file://path/to/my/repo/, <someivypattern>

and when I attempt to publish to it, I get the usual error:

java.lang.UnsupportedOperationException: URL repository only support HTTP PUT at the moment

I've attempted different ways to specify the repo path, but it always seems to demand a protocol specification, which then seems to prevent me from publishing to it if I use file:/.

How do I publish using the repositories file?

Community
  • 1
  • 1
Mysterious Dan
  • 1,316
  • 10
  • 25

1 Answers1

1

It turns out this wasn't possible. I fixed it in this pull request, so it is now.

Mysterious Dan
  • 1,316
  • 10
  • 25