-
Notifications
You must be signed in to change notification settings - Fork 14
/
project.clj
21 lines (20 loc) · 1.08 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 circleci/analytics-clj "0.10.2"
:description "Idiomatic Clojure wrapper for the Segment.io 2.x Java client"
:url "https://github.com/circleci/analytics-clj"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.11.2"]
[com.segment.analytics.java/analytics "3.5.1"]]
:managed-dependencies [[com.squareup.okio/okio-jvm "3.9.0"]]
:profiles {:dev {:dependencies [[bond "0.2.6"]]}}
:plugins [[lein-codox "0.10.8"]]
:codox {:output-path "docs"
:namespaces [circleci.analytics-clj.core]}
:repositories [["releases" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_token
:sign-releases false}]
["snapshots" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_token
:sign-releases false}]])