convert to deps.edn

This commit is contained in:
Luke VanderHart 2018-11-02 12:47:51 -04:00
parent 6bd80a1f4d
commit 5ef0a055e2
3 changed files with 11 additions and 8 deletions

1
.gitignore vendored
View File

@ -9,3 +9,4 @@ pom.xml.asc
/.nrepl-port /.nrepl-port
.hgignore .hgignore
.hg/ .hg/
.cpcache

10
deps.edn Normal file
View File

@ -0,0 +1,10 @@
{:paths ["src"]
:deps {org.clojure/clojure {:mvn/version "1.10.0-alpha4"}
org.clojure/tools.logging {:mvn/version "0.3.1"}}
:aliases
{:run-tests {:main-opts ["-m" "cognitect.test-runner"]}
:test {:extra-paths ["test"]
:extra-deps {com.cognitect/test-runner {:git/url "https://github.com/cognitect-labs/test-runner.git"
:sha "028a6d41ac9ac5d5c405dfc38e4da6b4cc1255d5"}
criterium/criterium {:mvn/version "0.4.4"}
org.clojure/test.check {:mvn/version "0.9.0"}}}}}

View File

@ -1,8 +0,0 @@
(defproject org.arachne-framework/valuehash "0.1.1"
:description "Value based hashing for Clojure data"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0-alpha16" :scope "provided"]
[org.clojure/test.check "0.9.0" :scope "test"]
[criterium "0.4.4" :scope "test"]]
:repositories [["arachne-dev" "http://maven.arachne-framework.org/artifactory/arachne-dev"]])