-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
45 lines (37 loc) · 1.36 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
34
35
36
37
38
39
40
41
42
43
44
45
(def version
(or (System/getenv "VERSION")
"0.0.8"))
(defproject ai.mypulse/flagsmith-clj version
:description "A Clojure wrapper around the Flagsmith Java SDK"
:url "https://github.com/mypulse-uk/flagsmith-clj"
:license {:name "The MIT License"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.11.1"]
[com.flagsmith/flagsmith-java-client "7.1.0"]]
:plugins [[lein-cloverage "1.2.3"]
[lein-shell "0.5.0"]
[lein-ancient "0.7.0"]
[lein-changelog "0.3.2"]
[lein-eftest "0.5.9"]
[lein-codox "0.10.8"]
[lein-kibit "0.1.8"]
[lein-bikeshed "0.5.2"]]
:profiles
{:shared {:dependencies [[kelveden/clj-wiremock "1.8.0"]
[freeport "1.0.0"]
[metosin/jsonista "0.3.7"]
[eftest "0.5.9"]]
:eftest {:multithread? false}}
:dev [:shared]
:test [:shared]
:release
{:release-tasks
[["deploy"]]}}
:target-path "target/%s/"
:bikeshed {:max-line-length 120}
:repl-options {:init-ns flagsmith-clj.core}
:deploy-repositories
{"releases" {:url "https://repo.clojars.org"
:username :env/clojars_deploy_username
:password :env/clojars_deploy_token
:sign-releases false}})