forked from clj-holmes/clj-holmes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
55 lines (45 loc) · 2.4 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
46
47
48
49
50
51
52
53
54
55
(defproject org.clojars.clj-holmes/clj-holmes "1.2.0"
:description "Clojure SAST."
:url "https://github.com/clj-holmes/clj-holmes"
:scm {:name "git"
:url "https://github.com/clj-holmes/clj-holmes"}
:license {:name "Eclipse Public License 1.0"
:url "http://opensource.org/licenses/eclipse-1.0.php"}
:deploy-repositories [["clojars" {:url "https://clojars.org/repo"
:username :env/clojars_user
:password :env/clojars_pass
:sign-releases false}]]
:plugins [[lein-ancient "0.6.15"]
[lein-cljfmt "0.6.4"]
[lein-nsorg "0.3.0"]
[jonase/eastwood "0.3.10"]]
:source-paths ["src/"]
:test-paths ["test/"]
:resource-paths ["resources/"]
:main clj-holmes.main
:dependencies [[org.clojure/clojure "1.10.2-alpha1"]
[org.clojure/tools.namespace "1.1.0"]
[org.clojure/tools.cli "1.0.206"]
[org.clojure/data.json "2.4.0"]
[cli-matic "0.4.3"]
[org.martinklepsch/clj-http-lite "0.4.3"]
[clj-commons/clj-yaml "0.7.107"]
[progrock "0.1.2"]
[org.clojars.clj-holmes/shape-shifter "0.3.6"]
[borkdude/edamame "0.0.11"]]
:profiles {:dev {:global-vars {*warn-on-reflection* true
*unchecked-math* :warn-on-boxed}
:plugins [[lein-shell "0.5.0"]]}
:uberjar {:global-vars {*assert* false}
:aot :all
:main clj-holmes.main
:jvm-opts ["-Dclojure.compiler.direct-linking=true"
"-Dclojure.spec.skip-macros=true"]}}
:aliases {"native" ["shell" "native-image" "--report-unsupported-elements-at-runtime"
"--initialize-at-build-time"
"-jar" "./target/${:uberjar-name:-${:name}-${:version}-standalone.jar}"
"-H:Name=./target/${:name}" "--enable-https"]
"project-version" ["shell" "echo" "${:version}"]
"clj-holmes" ["run" "-m" "clj-holmes.entrypoint"]
"lint" ["do" ["cljfmt" "check"] ["nsorg"] ["eastwood" "{:namespaces [:source-paths]}"]]
"lint-fix" ["do" ["cljfmt" "fix"] ["nsorg" "--replace"]]})