-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
31 lines (25 loc) · 979 Bytes
/
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
(defproject com.vodori/reactors "0.1.1-SNAPSHOT"
:description
"A clojure library for maintaining state, incorporating events
from multiple sources and broadcasting an interpretation of the
change in state to any observers."
:url
"https://github.com/vodori/reactors"
:license
{:name "MIT License" :url "http://opensource.org/licenses/MIT" :year 2018 :key "mit"}
:scm
{:name "git" :url "https://github.com/vodori/reactors"}
:dependencies
[[org.clojure/clojure "1.10.0-alpha8"]
[org.clojure/core.async "0.4.474"]
[com.taoensso/timbre "4.10.0"]]
:pom-addition
[:developers
[:developer
[:name "Paul Rutledge"]
[:url "https://github.com/rutledgepaulv"]
[:email "[email protected]"]
[:timezone "-5"]]]
:deploy-repositories
{"releases" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2/" :creds :gpg}
"snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots/" :creds :gpg}})