This repository has been archived by the owner on Dec 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
36 lines (35 loc) · 1.67 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
(defproject gxtdb "0.0.1-SNAPSHOT"
:description "XTDB gRPC server plugin"
:url "https://github.com/naomijub/gXTDB"
:license {:name "MIT"
:url "https://www.mit.edu/~amini/LICENSE.md"
:year 2023
:key "mit"}
:plugins [[lein-cljfmt "0.9.2"]
[lein-kibit "0.1.8"]
[lein-cloverage "1.2.4"]
[jonase/eastwood "1.4.0"]]
:dependencies [[org.clojure/clojure "1.11.0"]
[com.xtdb/xtdb-core "1.22.1"]
[io.pedestal/pedestal.service "0.5.9"]
[com.cognitect/anomalies "0.1.12"]
[ch.qos.logback/logback-classic "1.2.11"]
[ch.qos.logback/logback-core "1.2.11"]
;; -- PROTOC-GEN-CLOJURE --
[io.github.protojure/grpc-server "2.0.1"]
[io.github.protojure/google.protobuf "2.0.0"]
[ch.qos.logback/logback-classic "1.2.9"]
[org.slf4j/jul-to-slf4j "1.7.32"]
[org.slf4j/jcl-over-slf4j "1.7.32"]
[org.slf4j/log4j-over-slf4j "1.7.32"]]
:min-lein-version "2.0.0"
:jvm-opts ["-Dlogback.configurationFile=resources/logback.xml"
"-Dclojure.spec.compile-asserts=true"
"-Dclojure.spec.check-asserts=true"]
:resource-paths ["config", "resources"]
:profiles {:dev {:aliases {"run-dev" ["trampoline" "run" "-m" "gxtdb.server/run-dev"]}
:dependencies [[io.pedestal/pedestal.service-tools "0.5.9"]
[protojure "1.7.3"]
[io.github.protojure/grpc-client "2.6.1"]]}
:uberjar {:aot [gxtdb.server]}}
:main ^{:skip-aot true} gxtdb.server)