-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
47 lines (46 loc) · 3.01 KB
/
deps.edn
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
{:paths ["src" "resources"]
:deps {org.apache.kafka/kafka-clients {:mvn/version "3.3.1"}
org.apache.logging.log4j/log4j-core {:mvn/version "2.17.2"}
org.apache.logging.log4j/log4j-slf4j18-impl {:mvn/version "2.17.2"}
org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/core.async {:mvn/version "1.5.648"}
org.clojure/data.json {:mvn/version "2.4.0"}
org.clojure/java.classpath {:mvn/version "1.0.0"}
org.clojure/tools.cli {:mvn/version "1.0.206"}
org.clojure/tools.logging {:mvn/version "1.2.4"}
nrepl/nrepl {:mvn/version "1.0.0"}
instaparse/instaparse {:mvn/version "1.4.12"}
us.jeffevans.kc-repl/type-handlers {:local/root "type-handlers"}}
:mvn/repos
{"confluent" {:url "https://packages.confluent.io/maven/"}}
:aliases
{:run {:main-opts ["-m" "us.jeffevans.kc-repl"]
:jvm-opts ["-Dclojure.core.async.pool-size=1"]}
:build {:deps {io.github.clojure/tools.build {:git/tag "v0.10.0"
:git/sha "3a2c484"}}
:ns-default build}
:type-handlers {:extra-deps {us.jeffevans.kc-repl/avro-handler {:local/root "type-handlers/avro"}
us.jeffevans.kc-repl/protobuf-handler {:local/root "type-handlers/protobuf"}}
:extra-paths ["type-handlers/avro/test"
"type-handlers/protobuf/test"]}
;; TODO: come up with better name for this alias
;; I want to include the extra-paths and extra-deps so that they will be loaded by Cursive
;; But if I do them under test, then I can't get the Cursive local nREPL invocation to *not*
;; actually launch the test runner. I only want it to start nREPL with these dependencies
:test-dependencies {:extra-paths ["test"
"type-handlers/avro/test-resources"
"type-handlers/protobuf/target/classes"]
:extra-deps {org.testcontainers/kafka {:mvn/version "1.19.4"}
org.testcontainers/testcontainers {:mvn/version "1.19.4"}
org.apache.kafka/kafka_2.13 {:mvn/version "3.5.0"}
us.jeffevans.kc-repl/test-common {:local/root "test-common"}
;; TODO: figure out why the GitHub coordinate DOES NOT WORK
;; io.github.findinpath/testcontainers-kafka-avro {:git/sha "943ae540e8db36a7515e5b454b71c7fdd54ea4b0"}}}
findinpath/testcontainers-kafka-avro {:local/root "libs/testcontainers-kafka-avro-1.0-SNAPSHOT-tests.jar"}}}
:test {:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
io.github.cognitect-labs/test-runner
{:git/tag "v0.5.0" :git/sha "48c3c67"}
org.testcontainers/kafka {:mvn/version "1.17.6"}}
:main-opts ["-m" "cognitect.test-runner"]
:exec-fn cognitect.test-runner.api/test}}}