-
Notifications
You must be signed in to change notification settings - Fork 7
/
deps.edn
27 lines (23 loc) · 1.03 KB
/
deps.edn
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
;; Copyright (c) Cognitect, Inc.
;; All rights reserved.
{:paths ["src" "resources"]
:deps {;; Note that the Datomic client API is *not* a production
;; dep. It is already installed for you in Datomic Cloud.
;; The ion library includes helpers for interacting with
;; AWS, e.g. the ionize function to convert a Ring-like
;; web function so that it implements the contract expected
;; by AWS API Gateway.
com.datomic/ion {:mvn/version "0.9.50"}
org.clojure/data.json {:mvn/version "0.2.6"}
org.clojure/clojure {:mvn/version "1.10.0"}}
:mvn/repos {"datomic-cloud" {:url "s3://datomic-releases-1fc2183a/maven/releases"}}
:aliases
{:dev
{:extra-deps
{
;; The client-cloud library is a dev-time only dep
;; so that you can test interactively from a REPL.
com.datomic/client-cloud {:mvn/version "0.8.113"}
;; The ion-dev tooling implements the :push and
;; :deploy commands and is needed only at dev time.
com.datomic/ion-dev {:mvn/version "0.9.290"}}}}}