-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.clj
17 lines (17 loc) · 1.06 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject org.flatland/masai "0.8.0"
:url "https://github.com/flatland/masai"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:description "Key-value database for Clojure with pluggable backends."
:dependencies [[org.clojure/clojure "1.4.0"]
[org.flatland/useful "0.9.0"]
[org.flatland/retro "0.8.0"]]
:profiles {:1.5 {:dependencies [[org.clojure/clojure "1.5.0-master-SNAPSHOT"]]}
:1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]}
:dev {:dependencies [[org.flatland/tokyocabinet "1.24.6"]
[spy/memcached "2.4rc1"]
[org.clojars.raynes/jedis "2.0.0-SNAPSHOT"]]}}
:aliases {"testall" ["with-profile" "dev,default:dev,1.5,default" "test"]}
:repositories {"sonatype-snapshots" {:url "http://oss.sonatype.org/content/repositories/snapshots"
:snapshots true
:releases {:checksum :fail :update :always}}})