The official SBT documentation mentions own resolvers (link) from SBT point of view. The question is how to create own public server from whence dependencies can be downloaded (via resolvers from SBT).
Assuming having simple apache/php webhosting with domain, can I just place .jar
files somewhere with some naming conventions and eventually use: (example)
resolvers += "My projects repos" at "http[s]://downloads.my-domain.tld/sbt"
If so, what are the naming conventions and best practice? If not, what is required? Does one need the access to *nix server? Should something be installed or configured?
Thanks for help