forked from danlentz/clj-uuid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
21 lines (21 loc) · 1.15 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject danlentz/clj-uuid "0.1.8-SNAPSHOT"
:description "A Clojure library for generation and utilization of
UUIDs (Universally Unique Identifiers) as described by
RFC-4122. This library extends the standard Java UUID class
to provide true v1 (time based) and v3/v5 (namespace based)
identifier generation. Additionally, a number of useful
supporting utilities are provided to support serialization
and manipulation of these UUIDs in a simple, efficient manner."
:author "Dan Lentz"
:jvm-opts ^:replace []
:signing {:gpg-key "3A2F2AA9"}
:url "https://github.com/danlentz/clj-uuid"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0" :scope "provided"]
[primitive-math "0.1.4"]]
:codox {:output-dir "doc/api"
:src-dir-uri "https://github.com/danlentz/clj-uuid/blob/master/"
:src-linenum-anchor-prefix "L"
:project {:name "clj-uuid"}}
:global-vars {*warn-on-reflection* false})