Enable basic clj/tools.deps.alpha support
This commit is contained in:
parent
0c44eaa6e7
commit
5b533cf1e0
2 changed files with 15 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -9,6 +9,7 @@
|
||||||
pom.xml*
|
pom.xml*
|
||||||
*.jar
|
*.jar
|
||||||
*.class
|
*.class
|
||||||
|
.cpcache
|
||||||
.lein-deps-sum
|
.lein-deps-sum
|
||||||
.lein-failures
|
.lein-failures
|
||||||
.lein-plugins
|
.lein-plugins
|
||||||
|
|
|
||||||
14
deps.edn
Normal file
14
deps.edn
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
;; A basic deps.edn for HoneySQL
|
||||||
|
;; Only supports the Clojure (.cljc) side of the house.
|
||||||
|
;; Provides basic support for running the tests (in Clojure).
|
||||||
|
{:paths ["src" "resources"]
|
||||||
|
:deps {org.clojure/clojure {:mvn/version "1.8.0"}
|
||||||
|
net.cgrand/macrovich {:mvn/version "0.2.0"}}
|
||||||
|
:aliases
|
||||||
|
{;; clj -A:test:runner
|
||||||
|
:test {:extra-paths ["test"]}
|
||||||
|
:runner {:extra-deps {com.cognitect/test-runner
|
||||||
|
{:git/url "https://github.com/cognitect-labs/test-runner"
|
||||||
|
:sha "76568540e7f40268ad2b646110f237a60295fa3c"}}
|
||||||
|
:main-opts ["-m" "cognitect.test-runner"
|
||||||
|
"-d" "test"]}}}
|
||||||
Loading…
Reference in a new issue