Enable basic clj/tools.deps.alpha support

This commit is contained in:
Sean Corfield 2018-06-26 15:57:46 -07:00
parent 0c44eaa6e7
commit 5b533cf1e0
2 changed files with 15 additions and 0 deletions

1
.gitignore vendored
View file

@ -9,6 +9,7 @@
pom.xml*
*.jar
*.class
.cpcache
.lein-deps-sum
.lein-failures
.lein-plugins

14
deps.edn Normal file
View 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"]}}}