Most of my open-source Java/Clojure projects are available on either Clojars or Maven Central.
A few older projects are hosted on my personal Maven 2 repositories:
- RELEASES: http://stuartsierra.com/maven2
- SNAPSHOTS: http://stuartsierra.com/m2snapshots
To add the RELEASE repository to your build tool, use the following configuration:
Leiningen project.clj
:
:repositories [["stuartsierra.com" "https://stuartsierra.com/maven2"]]
Maven pom.xml
:
<repositories> <repository> <id>stuartsierra</id> <url>https://stuartsierra.com/maven2</url> </repository> </repositories>
I wrote about how I created this repository: Run Your Own Maven Repository With Nothing but an FTP Server.