-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
54 lines (54 loc) · 2.97 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
(defproject io.factorhouse/kpow-streams-agent "0.2.13"
:description "Kpow's Kafka Streams monitoring agent"
:url "https://github.com/factorhouse/kpow-streams-agent"
:license {:name "Apache-2.0 License"
:url "https://www.apache.org/licenses/LICENSE-2.0"
:distribution :repo
:comments "same as Kafka"}
:scm {:name "git" :url "https://github.com/factorhouse/kpow-streams-agent"}
:pom-addition ([:developers
[:developer
[:id "wavejumper"]
[:name "Thomas Crowley"]
[:url "https://factorhouse.io"]
[:roles
[:role "developer"]
[:role "maintainer"]]]
[:developer
[:id "d-t-w"]
[:name "Derek Troy-West"]
[:url "https://factorhouse.io"]
[:roles
[:role "developer"]
[:role "maintainer"]]]])
:dependencies [[org.clojure/clojure "1.12.0"]
[com.cognitect/transit-clj "1.0.333"]
[org.clojure/tools.logging "1.3.0"]
[org.apache.kafka/kafka-streams "3.7.1" :scope "provided"]]
:uberjar {:prep-tasks ["clean" "javac" "compile"]
:aot :all}
:classifiers [["sources" {:source-paths ^:replace []
:java-source-paths ^:replace ["src/java"]
:resource-paths ^:replace ["javadoc"]}]
["javadoc" {:source-paths ^:replace []
:java-source-paths ^:replace []
:resource-paths ^:replace ["javadoc"]}]]
:profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.91.1392"]]}
:dev {:resource-paths ["dev-resources"]
:plugins [[lein-cljfmt "0.9.2"]]
:dependencies [[org.slf4j/slf4j-api "2.0.16"]
[ch.qos.logback/logback-classic "1.3.14"]
[cheshire "5.13.0" :exclusions [com.fasterxml.jackson.core/jackson-databind]]
[clj-kondo "2024.09.27"]]}
:smoke {:pedantic? :abort}}
:aliases {"kaocha" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner"]
"kondo" ["with-profile" "+smoke" "run" "-m" "clj-kondo.main" "--lint" "src"]
"fmt" ["with-profile" "+smoke" "cljfmt" "check"]
"fmtfix" ["with-profile" "+smoke" "cljfmt" "fix"]}
:javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"]
:java-source-paths ["src/java"]
:source-paths ["src/clojure"]
:deploy-repositories [["releases" {:url "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/"
:creds :gpg}
"snapshots" {:url "https://s01.oss.sonatype.org/content/repositories/snapshots/"
:creds :gpg}]])