forked from ah45/clj-ldap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
20 lines (19 loc) · 828 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject org.clojars.ah45/clj-ldap "0.0.10-beta.3"
:description "Clojure ldap client (fork of pauldorman/clj-ldap)"
:url "https://github.com/ah45/clj-ldap"
:dependencies [[org.clojure/clojure "1.6.0"]
[com.unboundid/unboundid-ldapsdk "2.3.6"]]
:aot [clj-ldap.client]
:pom-addition [:developers
[:developer
[:id "pauldorman"]
[:name "Paul Dorman"]
[:url "https://github.com/pauldorman"]]
[:developer
[:id "ah45"]
[:name "Adam Harper"]
[:url "https://github.com/ah45"]]]
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "same as Clojure"})