-
Notifications
You must be signed in to change notification settings - Fork 9
/
project.clj
37 lines (36 loc) · 1.64 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
34
35
36
37
(defproject kwrooijen/gungnir "0.0.2-SNAPSHOT"
:description "A fully featured, data-driven database library for Clojure."
:url "https://github.com/kwrooijen/gungnir"
:license {:name "MIT"}
:source-paths ["src/clj" "src/cljc"]
:dependencies [[com.github.seancorfield/next.jdbc "1.3.847"]
[org.postgresql/postgresql "42.5.4"]
[com.github.seancorfield/honeysql "2.4.980"]
[metosin/malli "0.10.1"]
[differ "0.3.3"]
[hikari-cp "3.0.1"]
[kwrooijen/clj-database-url "0.0.1"]
[org.clojure/tools.logging "1.2.4"]
[dev.weavejester/ragtime "0.9.3"]]
:plugins [[lein-cloverage "1.2.4"]
[lein-codox "0.10.8"]
[lein-ancient "0.7.0"]]
:codox {:doc-files ["README.md"
"doc/guide.md"
"doc/modules/database.md"
"doc/modules/migrations.md"
"doc/modules/model.md"
"doc/modules/changeset.md"
"doc/modules/query.md"
"doc/modules/transactions.md"
"doc/ui.md"
"doc/ui/form.md"]
:output-path "docs/"
:html {:namespace-list :nested}
:metadata {:doc/format :markdown}
:themes [:rdash]}
:profiles {:dev {:dependencies [[org.clojure/clojure "1.11.1"]
[orchestra "2021.01.01-1"]
[codox-theme-rdash "0.1.2"]]}
:test {:dependencies [[orchestra "2021.01.01-1"]]}}
:deploy-repositories [["releases" :clojars]])