-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.clj
More file actions
15 lines (15 loc) · 757 Bytes
/
project.clj
File metadata and controls
15 lines (15 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(defproject ring-ttl-session "0.3.1"
:description "Provides an implementation of an in-memory ring's SessionStore with
TTL."
:url "https://github.com/boechat107/ring-ttl-session"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[ring/ring-core "1.6.1"]
[org.clojure/core.cache "0.6.5"]
[expiring-map "0.1.8"]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.8.0"]]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}}
:aliases {"test" ["test" ":only" "ring-ttl-session.core-test"]
"all" ["with-profile" "+dev:+1.7:+1.6"]}
)