-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
38 lines (38 loc) · 1.96 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
38
(defproject declarative-ddl "0.1.1-SNAPSHOT"
:description "Database schema declarations with Clojure, plus utilities around that"
:url "https://github.com/fdhenard/declarative-ddl"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.10.1"]
[diff-as-list "3.0.2"]
[clojure.java-time "0.3.2"]
[conman "0.8.3"]
[org.clojure/clojurescript "1.10.520"]
[funcool/decimal "1.0.2"]
[camel-snake-kebab "0.4.1"]
[org.clojure/tools.cli "0.4.2"]
[org.postgresql/postgresql "42.2.10"]
;; [org.clojure/tools.logging "0.6.0"]
;; #_[ch.qos.logback/logback-core "1.2.3"]
;; [org.slf4j/slf4j-api "1.7.30"]
;; [org.slf4j/slf4j-simple "1.7.30"]
]
:repl-options {:init-ns declarative-ddl.core}
:source-paths ["src/clj" "src/cljc" "src/cljs"]
:plugins [[lein-cljsbuild "1.1.7"]
[lein-doo "0.1.10"]
[lein-figwheel "0.5.18"]]
:cljsbuild {:builds {;; :main {:source-paths ["src/cljs" "src/cljc"]}
:test {:source-paths ["src/cljs" "src/cljc" "test/cljs"]
:compiler {:output-to "target/js/test/test.js"
:output-dir "target/js/test/"
:target :nodejs
:main declarative-ddl.runner
:optimizations :none}}
:repl {:source-paths ["src/cljs" "src/cljc"]
:figwheel true
:compiler {:main "declarative-ddl.core"
:output-to "target/js/repl/main.js"
:output-dir "target/js/repl/"}}}}
:test-paths ["test/clj"]
:main declarative-ddl.cli)