-
Notifications
You must be signed in to change notification settings - Fork 33
/
project.clj
61 lines (53 loc) · 3.05 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
56
57
58
59
60
61
(defproject threatgrid/ctim "1.3.20-SNAPSHOT"
:description "Cisco Threat Intelligence Model"
:url "http://github.com/threatgrid/ctim"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:pedantic? :abort
:dependencies [[org.clojure/clojure "1.11.3"]
[prismatic/schema "1.2.0"]
[com.google.protobuf/protobuf-java "3.7.1"] ;clj-momo > org.clojure/clojurescript
[threatgrid/clj-momo "0.3.5"
:exclusions [;flanders > threatgrid/clj-momo
metosin/schema-tools]]
[org.mozilla/rhino "1.7.7.1"] ;threatgrid/flanders > kovacnica/clojure.network.ip
[threatgrid/flanders "1.0.2"]
[metosin/ring-swagger "1.0.0"]
[org.clojure/test.check "1.1.1"]
[com.gfredericks/test.chuck "0.2.13"]
[prismatic/schema-generators "0.1.3"]
[kovacnica/clojure.network.ip "0.1.3"]]
:uberjar-name "ctim.jar"
:resource-paths ["doc"]
:plugins [[lein-cljsbuild "1.1.7"]
[com.google.guava/guava "20.0"] ;resolve internal conflict in `lein-doo`
[lein-doo "0.1.11" :exclusions [org.clojure/clojure]]
#_[reifyhealth/lein-git-down "0.3.5"]]
;:middleware [lein-git-down.plugin/inject-properties]
;:repositories [["public-github" {:url "git://github.com"}]
; ["private-github" {:url "git://github.com" :protocol :ssh}]]
:aliases {"doc" ^{:doc "Generate documentation"} ["run" "-m" "ctim.document"]
"docs" ^{:doc "Generate documentation"} ["doc"]
"gen" ^{:doc "Generate an example"} ["run" "-m" "ctim.generate"]}
:cljsbuild {:builds {:node {:source-paths ["src" "test"]
:compiler {:output-to "target/tests.js"
:output-dir "target/node"
:optimizations :advanced
:main ctim.runner
:pretty-print true
:target :nodejs
:hashbang false}}
:test {:source-paths ["src" "test"]
:compiler {:output-to "target/tests.js"
:language-in :ecmascript5
:optimizations :whitespace
:main ctim.runner
:pretty-print true}}}}
:test-selectors {:no-gen #(not (:gen %))}
:global-vars {*warn-on-reflection* true}
:profiles {:provided
{:dependencies [;https://clojure.atlassian.net/browse/CLJS-3047
[com.google.errorprone/error_prone_annotations "2.1.3"]
;;https://clojure.atlassian.net/browse/CLJS-3047
[com.google.code.findbugs/jsr305 "3.0.2"]
[org.clojure/clojurescript "1.10.597"]]}})