-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
22 lines (22 loc) · 856 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
(defproject vet-calculator "0.1.1-SNAPSHOT"
:description "Veterinary Calculator"
:url "http://www.vetcalculator.com"
:dependencies [[org.clojure/clojure "1.5.1"]
[compojure "1.1.5"]
[cheshire "5.0.2"]
[clj-time "0.6.0"]
[org.clojure/tools.logging "0.2.6"]
[org.slf4j/slf4j-log4j12 "1.6.6"]
[ring/ring-jetty-adapter "1.2.0"]]
:aot [com.dillius.lifesci.main]
:main com.dillius.lifesci.main
:plugins [[lein-ring "0.8.2"]]
:ring {:handler com.dillius.lifesci.handler/app}
:profiles
{:dev {:dependencies [[ring-mock "0.1.3"]]}}
:uberjar-name "vet-calculator.jar"
:keep-non-project-classes true
:license {:name "Apache License Version 2.0"
:url "https://www.apache.org/licenses/LICENSE-2.0"}
:min-lein-version "2.0.0"
)