-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
16 lines (16 loc) · 909 Bytes
/
project.clj
File metadata and controls
16 lines (16 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject org.openvoxproject/structured-logging "1.0.2-SNAPSHOT"
:description "Write data structures to your logs from clojure."
:url "https://github.com/openvoxproject/structured-logging"
:license {:name "Apache License, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0.html"}
:dependencies [[org.clojure/clojure "1.12.4"]
[net.logstash.logback/logstash-logback-encoder "4.11"]
[org.clojure/tools.logging "0.6.0"]
[cheshire "5.13.0"]
[org.slf4j/slf4j-api "1.7.36"]]
:deploy-repositories [["releases" {:url "https://clojars.org/repo"
:username :env/CLOJARS_USERNAME
:password :env/CLOJARS_PASSWORD
:sign-releases false}]]
:lein-release {:scm :git
:deploy-via :lein-deploy})