Deps supports Maven repositories in Boot natively, with no tasks or custom wagons required. Get up and running in seconds: just sign-up, add the snippet below to your build.boot, and run boot build-jar push-release.

(set-env!
  :repositories
  #(conj %
         ["releases" {:url "https://repo.deps.co/acme/releases"
                      :username (System/getenv "DEPS_KEY")
                      :password (System/getenv "DEPS_SECRET")}]))

All repositories come with HTTPS on by default.

Deps integrates natively with Boot tasks, including boot-deps for checking for outdated dependencies.

Sign up now to start deploying your Clojure artifacts.