forked from kornysietsma/twitter-example
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
16 lines (16 loc) · 727 Bytes
/
project.clj
File metadata and controls
16 lines (16 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject twitter-example "1.0.0-SNAPSHOT"
:description "example clojure / compojure twitter application"
:dependencies [[org.clojure/clojure "1.2.1"]
[org.clojure/clojure-contrib "1.2.0"]
[clojure-twitter/clojure-twitter "1.2.5"]
[compojure "0.6.3"]
[clj-oauth "1.2.10-SNAPSHOT"]
[clj-json "0.3.2"]
[ring-json-params "0.1.3"]
[sandbar "0.4.0-SNAPSHOT"]
[ring/ring-core "0.3.8"]
[ring/ring-jetty-adapter "0.3.8"]]
:dev-dependencies [[lein-ring "0.4.5"]
[midje "1.1.1"]]
:ring {:handler twitter-example.core/app}
:main twitter-example.core)