-
Notifications
You must be signed in to change notification settings - Fork 3
/
deps.edn
52 lines (51 loc) · 2.26 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{:paths ["src" ]
:aliases
{:dev
{:extra-deps {org.postgresql/postgresql {:mvn/version "42.2.12"}
;;Various users of the tmd system are still on jdk-8
com.microsoft.sqlserver/mssql-jdbc {:mvn/version "9.4.1.jre8"}
seancorfield/next.jdbc {:mvn/version "1.0.424"}
techascent/tech.ml.dataset {:mvn/version "7.028"}}
:extra-paths ["test"]}
:test
{:extra-deps {com.cognitect/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner"
:sha "209b64504cb3bd3b99ecfec7937b358a879f55c1"}
ch.qos.logback/logback-classic {:mvn/version "1.1.3"}}
:extra-paths ["test"]
:main-opts ["-m" "cognitect.test-runner"]}
:build
{:deps {io.github.clojure/tools.build {:git/tag "v0.9.6" :git/sha "8e78bcc"}}
:ns-default build}
;;deploy to clojars
:deploy
{:replace-deps {slipset/deps-deploy {:mvn/version "0.1.5"}}
:exec-fn deps-deploy.deps-deploy/deploy
:exec-args {:installer :remote
:sign-releases? true
:artifact "target/tech.ml.dataset.sql.jar"}}
:install
{:replace-deps {slipset/deps-deploy {:mvn/version "0.1.5"}}
:exec-fn deps-deploy.deps-deploy/deploy
:exec-args {:installer :local
:artifact "target/tech.ml.dataset.sql.jar"}}
;;used for installing base package.json
;;Writes docs into docs/index.html
;;clj -X:cljs-docs
:codox
{:extra-deps {codox-theme-rdash/codox-theme-rdash {:mvn/version "0.1.2"}
com.cnuernber/codox {:mvn/version "1.001"}
cider/cider-nrepl {:mvn/version "0.26.0"}
techascent/tech.ml.dataset {:mvn/version "7.028"}}
:exec-fn codox.main/-main
:exec-args {:arg-paths [[:aliases :depstar :exec-args]]
:group-id "techascent"
:artifact-id "tech.ml.dataset.sql"
:description "SQL bindings for tech.ml.dataset"
:metadata {:doc/format :markdown}
:themes [:rdash]
:version "7.029"
:source-paths ["src"]
:output-path "docs"
:source-uri "https://github.com/techascent/tech.ml.dataset.sql/blob/master/{filepath}#L{line}"
:namespaces [tech.v3.dataset.sql tech.v3.dataset.sql.datatypes]}}}}