-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
26 lines (26 loc) · 1.18 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
=(defproject rill-event-sourcing/rill "0.2.3-RC2"
:deploy-repositories [["releases" {:url "https://clojars.org"
:creds :gpg}]]
:description "An Event Sourcing Toolkit"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:url "https://github.com/rill-event-sourcing/rill"
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/core.async "0.1.338.0-5c5012-alpha"]
[org.clojure/tools.logging "0.2.6"]
[prismatic/schema "0.2.2"]
[slingshot "0.10.3"]
[environ "0.5.0"]
[identifiers "1.1.0"]
[org.clojure/java.jdbc "0.7.0-alpha1"]
[postgresql "9.1-901.jdbc4"]
[com.taoensso/nippy "2.6.3"]
[mysql/mysql-connector-java "5.1.6"]
[clojure.jdbc/clojure.jdbc-c3p0 "0.3.2"]]
:profiles {:dev {:plugins [[lein-repack "0.2.8"]
[lein-set-version "0.4.1"]]}}
:set-version
{:updates [{:path "README.org" :no-snapshot true}]}
:repack [{:path "src"
:type :clojure
:levels 2}])