-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
19 lines (19 loc) · 945 Bytes
/
project.clj
File metadata and controls
19 lines (19 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject squink "0.1.0-SNAPSHOT"
:description "SQUish a url in a wINK"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:plugins [[lein-ring "0.8.11"]]
:ring {:handler squink.core/handler}
:dependencies [[org.clojure/clojure "1.6.0"]
[compojure "1.1.9"]
[ring/ring-core "1.3.1"]
[ring/ring-jetty-adapter "1.3.1"]
[org.clojure/java.jdbc "0.3.5"]
[mysql/mysql-connector-java "5.1.25"]
[clojurewerkz/urly "2.0.0-SNAPSHOT"]
[com.google.guava/guava "18.0"]]
:profiles {:dev {:dependencies [[midje "1.6.3"]]}}
;:aot :all
;:main squink.core
)