-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
23 lines (23 loc) · 908 Bytes
/
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
(defproject amindblowingworld "0.1.0-SNAPSHOT"
:description "ACreativeTeamName's creation"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"}
:repositories {"sonartype snapshots" "https://oss.sonatype.org/content/repositories/snapshots"}
:dependencies [
[com.cemerick/friend "0.2.0"]
[friend-oauth2 "0.1.1"]
[ring "1.3.1" :exclusions [org.clojure/tools.reader]]
[cheshire "5.3.1"]
[clj-http "0.7.7" :exclusions [org.clojure/tools.reader]]
[org.clojure/clojure "1.5.1"]
[compojure "1.1.6"]
[hiccup "1.0.4"]
[com.github.lands/lands-java-lib "0.3-SNAPSHOT"]
[org.clojure/math.combinatorics "0.0.8"]
[org.clojure/data.json "0.2.5"]]
:plugins [
[lein-ring "0.8.7"]]
:ring {
:init amindblowingworld.civs/init
:handler amindblowingworld.routes/app
:auto-reload? true})