-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
21 lines (20 loc) · 775 Bytes
/
project.clj
File metadata and controls
21 lines (20 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject com.klauer/java-watcher "0.1.0"
:description "Thin wrapper around Java 7's WatchService"
:url "https://github.com/klauern/java-watcher.clj"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [
[org.clojure/clojure "1.5.1"]
[lamina "0.5.0-beta8" :exclusions [useful]]
[potemkin "0.1.6"]
[midje "1.5-beta2" :scope "test"]
[fs "1.3.3" :scope "test"]
]
:repositories [ ["stuart" "http://stuartsierra.com/maven2"]
["releases" "https://clojars.org/repo"]
]
:plugins [
[lein-midje "3.0-beta1"]
[codox "0.6.1"]
]
)