trptcolin / versioneer

Provides version introspection for Leiningen-generated projects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

versioneer

A clojure library for accessing version information for Leiningen-built jars.

Say you have a command-line Clojure app, and you want to display to the user what version of your app they're using. No problem, if you're using Leiningen to build your app's jar.

Add this to your project.clj:

[trptcolin/versioneer "0.2.0"]

Then, in your code, do something like this, where GROUP-ID and ARTIFACT-ID are the usual Leiningen/Maven identifiers for your project.

user=> (require '[trptcolin.versioneer.core :as version])
nil
user=> (version/get-version "GROUP-ID" "ARTIFACT-ID")
"1.2.3-SNAPSHOT"

Credits

Many thanks to Michiel Borkent for the initial implementation as part of REPL-y, and also to Phil Hagelberg for lighting the way.

License

Copyright © 2015 Colin Jones

Distributed under the Eclipse Public License, the same as Clojure.

About

Provides version introspection for Leiningen-generated projects

License:Eclipse Public License 1.0


Languages

Language:Clojure 100.0%