-
Notifications
You must be signed in to change notification settings - Fork 11
/
project.clj
25 lines (25 loc) · 1.75 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
(defproject nl.openweb/kafka-graphql-examples "0.1.0-SNAPSHOT"
:plugins [[lein-modules "0.3.11"]]
:modules {:inherited
{:repositories [["confluent" "https://packages.confluent.io/maven/"]]
:aliases {"all" ^:displace ["do" "clean," "test," "install", "uberjar"]
"-f" ["with-profile" "+fast"]}
:scm {:dir ".."}
:javac-options ["-target" "11" "-source" "11"]
:license {:name "MIT License"
:url "https://opensource.org/licenses/MIT"
:key "mit"
:year 2019}}
:versions {ch.qos.logback/logback-classic "1.3.0-alpha5"
com.damballa/abracad "0.4.14-alpha2"
com.fasterxml.jackson.core/jackson-annotations "2.11.0"
com.fasterxml.jackson.core/jackson-core "2.11.0"
com.fasterxml.jackson.core/jackson-databind "2.11.0"
hikari-cp/hikari-cp "2.12.0"
io.confluent/kafka-avro-serializer "5.5.0"
org.apache.avro/avro "1.9.2"
org.clojure/clojure "1.10.1"
org.clojure/data.json "1.0.0"
org.clojure/tools.logging "1.1.0"
org.postgresql/postgresql "42.2.12"
seancorfield/next.jdbc "1.0.424"}})