-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
33 lines (27 loc) · 1.18 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
23
24
25
26
27
28
29
30
31
32
33
(defproject fhirterm "0.1.0-SNAPSHOT"
:description "FHIR Terminology Server"
:url "http://github.com/fhirbase/fhirterm"
:license {:name "MIT"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/java.jdbc "0.3.6"]
[postgresql/postgresql "8.4-702.jdbc4"]
[compojure "1.3.1"]
[http-kit "2.1.16"]
[org.clojure/tools.cli "0.3.1"]
[honeysql "0.4.3"]
[cheshire "5.4.0"]
[clj-time "0.8.0"]
[ring/ring-devel "1.3.1"]
[criterium "0.4.3"]
[com.taoensso/timbre "3.3.1"]
[instaparse "1.3.5"] ;; parser generator for UCUM parsing
[org.clojure/data.csv "0.1.2"]]
:java-source-paths ["src/java"]
:profiles {:dev {:source-paths ["dev"]}
:dependencies [[org.clojure/tools.namespace "0.2.4"]]}
:test-selectors {:default (fn [m] (not (and (:integration m) (:tasks m))))
:integration :integration
:tasks :task
:all (constantly true)}
:main fhirterm.core)