-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathproject.clj
31 lines (25 loc) · 1.45 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
(defproject org.clj-commons/gloss (or (System/getenv "PROJECT_VERSION") "0.3.6")
:description "Speaks in bytes, so that you don't have to"
:url "https://github.com/clj-commons/gloss"
:scm {:name "git" :url "https://github.com/clj-commons/gloss"}
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo}
:deploy-repositories [["clojars" {:url "https://repo.clojars.org"
:username :env/clojars_username
:password :env/clojars_org_clj_commons_password
:sign-releases true}]]
:dependencies [[manifold/manifold "0.4.1"]
[org.clj-commons/byte-streams "0.3.2"]
[potemkin/potemkin "0.4.6"]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.11.1"]
[org.clojure/test.check "1.1.1"]
[metosin/malli "0.10.4"]]}
:ci {:javac-options ["-target" "1.8" "-source" "1.8"]
:dependencies [[org.clojure/clojure "1.11.1"]
[metosin/malli "0.10.4"]]}}
:cljfmt {:indents {#".*" [[:inner 0]]}}
:plugins [[jonase/eastwood "1.2.3"]]
:eastwood {:exclude-linters [:non-dynamic-earmuffs :unlimited-use :unused-meta-on-macro]}
:global-vars {*warn-on-reflection* true}
:javac-options ["-target" "1.8" "-source" "1.8"])