-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathproject.clj
More file actions
47 lines (42 loc) · 2.25 KB
/
project.clj
File metadata and controls
47 lines (42 loc) · 2.25 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
(defproject nvd-clojure "5.3.0"
:description "National Vulnerability Database dependency checker"
:url "https://github.com/rm-hull/nvd-clojure"
:license {:name "The MIT License (MIT)"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[clansi "1.0.0"]
;; dependency-check-core transitively brings in two versions of
;; these dependencies, so we explicitly depend on the latest
[com.google.errorprone/error_prone_annotations "2.46.0"]
[commons-logging/commons-logging "1.3.5"]
[org.clojure/clojure "1.12.3"]
[org.clojure/data.json "2.5.2"]
[org.slf4j/slf4j-simple "2.0.17"]
[org.owasp/dependency-check-core "12.2.0" :exclusions [commons-logging]]
[rm-hull/table "0.7.1"]
[trptcolin/versioneer "0.2.0"]]
:managed-dependencies [[com.google.code.gson/gson "2.13.2"]]
:scm {:url "git@github.com:rm-hull/nvd-clojure.git"}
:source-paths ["src"]
:jar-exclusions [#"(?:^|/).git"]
:codox {:source-paths ["src"]
:output-path "doc/api"
:source-uri "https://github.com/rm-hull/nvd-clojure/blob/main/{filepath}#L{line}"}
:min-lein-version "2.8.1"
:target-path "target/%s"
:jvm-opts ["-Dclojure.main.report=stderr"]
:profiles {:dev {:plugins [[jonase/eastwood "1.4.0"]
[lein-ancient "0.7.0"]
[lein-cljfmt "0.7.0"]
[lein-cloverage "1.2.3"]
[lein-codox "0.10.7"]]
:eastwood {:add-linters [:boxed-math
:performance]}
:dependencies [[clj-kondo "2026.01.19"]
[commons-collections "20040616"]]}
:ci {:pedantic? :abort}
:clj-kondo {:dependencies [[clj-kondo "2026.01.19"]]}
:skip-self-check {:jvm-opts ["-Dnvd-clojure.internal.skip-self-check=true"]}}
:deploy-repositories [["clojars" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]])