-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
21 lines (19 loc) · 896 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject data-service-provider "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.10.3"]
[compojure "1.7.1"]
[ring/ring-core "1.11.0"]
[ring/ring-jetty-adapter "1.11.0"]
[utility "0.1.0-SNAPSHOT"]
[metosin/malli "0.8.2"]
[clj-http "3.12.3"]
[meander/epsilon "0.0.650"]
[data-transformation "0.1.0-SNAPSHOT"]
[cambium/cambium.core "1.1.1"]
[cambium/cambium.codec-simple "1.0.0"]
[cambium/cambium.logback.core "0.4.6"]]
:aot :all
:repl-options {:init-ns data-service-provider.core})