Table of Contents

SBT is a default build tool for and there are some noticeable changes in package naming convention, but at the end it works on top of the Maven protocol. All you need is to link your repository and provide valid credentials to that has access to used by your project.
// Standard
publishTo := Some("Reposilite" at "https://maven.reposilite.com/releases")
credentials += Credentials("Reposilite", "maven.reposilite.com", "token", "secret")

// For localhost
publishTo := Some("Reposilite" at "http://localhost:8080/releases")
credentials += Credentials("Reposilite", "localhost", "token", "secret")
For more advanced configurations, take a look at official publishing guide for SBT:

Did you find misleading or deprecated content? Maybe you just feel this section misses important elements?

Guide

Copyright © 2023 dzikoysk with ❤ panda-lang