-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathproject.clj
25 lines (25 loc) · 1.66 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
(defproject unleash-client-clojure "0.4.0"
:description "A Clojure library wrapping https://github.com/Unleash/unleash-client-java"
:url "https://github.com/AppsFlyer/unleash-client-clojure"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:deploy-repositories [["releases" {:url "https://repo.clojars.org"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]
["snapshots" {:url "https://repo.clojars.org"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]]
:dependencies [[no.finn.unleash/unleash-client-java "4.4.1"]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.10.3"]
[clj-kondo "RELEASE"]
[org.apache.logging.log4j/log4j-core "2.17.0"]
[org.apache.logging.log4j/log4j-api "2.17.0"]
[org.slf4j/slf4j-log4j12 "1.7.32"]]
:aliases {"clj-kondo" ["run" "-m" "clj-kondo.main"]
"lint" ["run" "-m" "clj-kondo.main" "--lint" "src" "test"]}
:plugins [[lein-ancient "1.0.0-RC3"]
[lein-cloverage "1.2.2"]
[lein-eftest "0.5.9"]]
:global-vars {*warn-on-reflection* true}}})