-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
35 lines (30 loc) · 1.23 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
(defproject say-cheez "0.2.0"
:description "Takes a snapshot of the environment at build time."
:url "https://github.com/l3nz/say-cheez"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:aliases
{"fix" ["cljfmt" "fix"]
; Kondo
"clj-kondo" ["with-profile" "kondo"
"trampoline" "run" "-m"
"clj-kondo.main" "--" "--lint" "src/" "--cache" ".cli-kondo-cache"]
"clj-kondo-test" ["with-profile" "kondo"
"trampoline" "run" "-m"
"clj-kondo.main" "--" "--lint" "test/" "--cache" ".cli-kondo-cache"]}
; deps
:dependencies
[[org.clojure/clojure "1.9.0" :scope "provided"]]
:profiles {:kondo
{:dependencies [[org.clojure/clojure "1.10.1"]
[clj-kondo "2019.10.11-alpha"]]}} :main say-cheez.run
:scm {:name "git"
;; :tag "..."
:url "https://github.com/l3nz/say-cheez"}
; Some plugins
:plugins [[lein-eftest "0.5.1"]
[lein-cljfmt "0.5.7"]]
; Deploy to repos
:deploy-repositories
[["clojars" {:sign-releases false :url "https://clojars.org/repo"}]
["snapshots" {:sign-releases false :url "https://clojars.org/repo"}]])