-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
26 lines (18 loc) · 1.01 KB
/
project.clj
File metadata and controls
26 lines (18 loc) · 1.01 KB
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
(defproject eu.esuomi.code/coll-tracker "_"
:description "Track which keys and indices of a deep data structures are accessed."
:url "https://github.com/esuomi/coll-tracker"
:license {:name "CC0-1.0"
:url "https://creativecommons.org/publicdomain/zero/1.0/"}
:scm {:name "git" :url "https://github.com/esuomi/coll-tracker"}
:dependencies [[org.clojure/clojure "1.12.4"]]
:deploy-repositories [["clojars" {:sign-releases false
:url "https://clojars.org/repo"
:username :env/CLOJARS_USERNAME
:password :env/CLOJARS_TOKEN}]]
:plugins [[fi.polycode/lein-git-revisions "1.1.2"]
[lein-pprint "1.3.2"]]
:global-vars {*warn-on-reflection* true}
:repl-options {:init-ns eu.esuomi.code.coll-tracker}
:git-revisions {:format :semver
:adjust [:env/revisions_adjustment :minor]
:revision-file "resources/metadata.edn"})