-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.clj
59 lines (59 loc) · 2.47 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
(defproject linkfluence/inventory "0.16.13-SNAPSHOT"
:description "Rtgi inventory App"
:url "http://www.linkfluence.com"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0"]
;; logging stuff
[org.clojure/tools.logging "1.2.1"]
[org.slf4j/slf4j-api "1.7.32"]
[org.slf4j/slf4j-log4j12 "1.7.32"]
[org.slf4j/jcl-over-slf4j "1.7.32"]
[org.apache.logging.log4j/log4j-core "2.15.0"]
;; time mgt
[clj-time "0.15.2"]
;; web service
[compojure "1.6.1"]
[ring "1.8.0"]
[ring-middleware-format "0.7.4"]
[bk/ring-gzip "0.3.0"]
;;for proxy
[clj-http "3.12.3"]
[digest "1.4.4"]
;;json yaml mgt
[cheshire "5.9.0"]
[clj-commons/clj-yaml "0.7.0"]
;;jackson
[com.fasterxml.jackson.core/jackson-core "2.11.0"]
[com.fasterxml.jackson.core/jackson-databind "2.11.0"]
[com.fasterxml.jackson.core/jackson-databind "2.11.0"]
;;aws
[amazonica "0.3.156"]
;;internal cloud lib
[luhhujbb/clj-aliyun "0.2.4"]
[luhhujbb/clj-ovh "0.1.13"]
[luhhujbb/leaseweb "0.3.7"]
[luhhujbb/clj-gcloud "1.0.0"]
;;scheduling
[jarohen/chime "0.3.3"]
;;async op
[org.clojure/core.async "1.5.648"]
;;Storage
[luhhujbb/oss-117 "0.1.3"] ;;ali cloud
[luhhujbb/envoy "0.3.1"] ;;consul
;;prometheus
[online.duevel/clometheus "0.1.0"]
;;Networking automation
[clj-commons/clj-ssh "0.5.15"]
[commons-net/commons-net "3.6"]
;;journal storer, esfs object saver
[cc.qbits/spandex "0.7.4"]
;;conf template (dns conf generation)
[luhhujbb/clostache "1.5.0"]
;;distributed queing
[luhhujbb/gregor "1.2.0"]]
:main ^:skip-aot com.linkfluence.starter
:target-path "target/%s"
:source-paths ["src/clj"]
:java-source-paths ["src/java"]
:profiles {:uberjar {:aot :all}})