-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
22 lines (22 loc) · 1.01 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject dwc-services "0.0.34"
:description "Simple web api to convert darwincore formats and perform analysis."
:url "http://github.com/biodivev/dwc-services"
:license {:name "MIT" }
:ring {:handler dwc-services.server/app :reload-paths ["src"]}
:resources-path "resources"
:main dwc-services.server
:dependencies [[org.clojure/clojure "1.8.0"]
[dwc-io "0.0.56"]
[dwc-analysis "0.0.31"]
[compojure "1.5.1"]
[ring/ring-core "1.5.0"]
[ring/ring-jetty-adapter "1.5.0"]
[org.clojure/data.json "0.2.6"]
[amalloy/ring-gzip-middleware "0.1.3"]
[clj-http "2.2.0"]]
:repositories [["osgeo" "http://download.osgeo.org/webdav/geotools/"]]
:profiles {:uberjar {:aot :all}
:dev {:dependencies [[midje "1.8.2"]
[javax.servlet/servlet-api "2.5"]]
:plugins [[lein-ring "0.9.7"]
[lein-midje "3.2"]]}})