This repository has been archived by the owner on Feb 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathproject.clj
33 lines (33 loc) · 1.64 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
(defproject org.zeromq/cljzmq "0.1.5-SNAPSHOT"
:description "Clojure binding for ØMQ"
:url "https://github.com/zeromq/cljzmq"
:license {:name "LGPLv3+"
:url "http://www.gnu.org/licenses/lgpl.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.zeromq/jzmq "3.1.1-SNAPSHOT"]]
:codox {:src-dir-uri "http://github.com/zeromq/cljzmq/blob/master"
:src-linenum-anchor-prefix "L"}
:profiles
{:1.5.1 {:dependencies [[org.clojure/clojure "1.5.1"]]}
:1.6.0 {:dependencies [[org.clojure/clojure "1.6.0"]]}
:1.7.0 {:dependencies [[org.clojure/clojure "1.7.0"]]}}
:aliases {"all" ["with-profile" "dev:1.5.1:1.6.0:1.7.0"]}
:repositories [["releases" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
:username [:gpg :env/NEXUS_USERNAME]
:password [:gpg :env/NEXUS_PASSWORD]}]
["snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots"
:username [:gpg :env/NEXUS_USERNAME]
:password [:gpg :env/NEXUS_PASSWORD]
:update :always}]]
:jvm-opts ^:replace ["-Djava.library.path=/usr/lib:/usr/local/lib"]
:pom-addition [:developers
[:developer
[:name "Trevor Bernard"]
[:email "[email protected]"]]
[:developer
[:name "Josh Comer"]
[:email "[email protected]"]]
[:developer
[:name "Ian Bishop"]
[:email "[email protected]"]]]
:min-lein-version "2.0.0")