This repository was archived by the owner on Oct 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
33 lines (33 loc) · 1.76 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
(defproject vald-client-clj #=(clojure.string/trim #=(slurp "VALD_CLIENT_CLJ_VERSION"))
:description "DEPRECATED: This project is no longer maintained. Please use vald-client-java instead."
:url "https://github.com/vdaas/vald-client-clj"
:license {:name "Apache License 2.0"
:url "https://www.apache.org/licenses/LICENSE-2.0"}
:deploy-repositories [["clojars" {:sign-releases false
:username :env/clojars_user
:password :env/clojars_pass
:url "https://clojars.org/repo"}]]
:dependencies [[org.clojure/clojure "1.12.0"]
[io.grpc/grpc-api "1.66.0"]
[io.grpc/grpc-core "1.66.0"
:exlusions [io.grpc/grpc-api]]
[io.grpc/grpc-protobuf "1.66.0"]
[io.grpc/grpc-stub "1.66.0"]
[build.buf/protovalidate "0.2.1"]
[org.vdaas.vald/vald-client-java "1.7.13"]]
:repl-options {:init-ns vald-client-clj.core}
:profiles {:dev
{:dependencies [[io.grpc/grpc-okhttp "1.66.0"
:exclusions [io.grpc/grpc-core]]
[metosin/jsonista "0.3.7"]
[camel-snake-kebab/camel-snake-kebab "0.4.3"]]}
:cmd
{:source-paths ["cmd"]
:dependencies [[org.clojure/tools.cli "1.0.219"]
[io.grpc/grpc-okhttp "1.66.0"
:exclusions [io.grpc/grpc-core]]
[metosin/jsonista "0.3.7"]
[camel-snake-kebab/camel-snake-kebab "0.4.3"]]
:aot :all
:global-vars {*assert* false}
:main vald-client-clj.cmd}})