forked from malcolmsparks/clj-logging-config
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
18 lines (17 loc) · 752 Bytes
/
project.clj
File metadata and controls
18 lines (17 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject clj-logging-config "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [
[org.clojure/clojure "1.5.1"]
[org.clojure/tools.logging "0.2.3"]
[log4j "1.2.16"]
;; [ch.qos.logback/logback-core "1.0.12"]
;; [ch.qos.logback/logback-classic "1.0.12"]
;; [net.logstash.logback/logstash-logback-encoder "1.2"]
;; [org.codehaus.jackson/jackson-mapper-asl "1.9.12"]
]
:source-paths ["src" "src/main/clojure"]
:test-paths ["test" "src/test/clojure"]
)