forked from clojusc/friend-oauth2-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
16 lines (16 loc) · 776 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject friend-oauth2-examples "0.0.2"
:description "Friend Oauth2 Workflow examples, includes App.net, Facebook and Github handlers."
:url "https://github.com/ddellacosta/friend-oauth2-examples"
:license {:name "MIT License"
:url "http://dd.mit-license.org"}
:dependencies [[org.clojure/clojure "1.4.0"]
[compojure "1.1.5"]
[com.cemerick/friend "0.1.4"]
[friend-oauth2 "0.0.3"]
[cheshire "5.0.2"]]
:plugins [[lein-ring "0.8.3"]]
:ring {:handler friend-oauth2-examples.appdotnet-handler/app}
;; :ring {:handler friend-oauth2-examples.facebook-handler/app}
;; :ring {:handler friend-oauth2-examples.github-handler/app}
:profiles
{:dev {:dependencies [[ring-mock "0.1.3"]]}})