2020-12-10 00:07:09 +08:00
|
|
|
(defproject jepsen.memgraph "0.1.0-SNAPSHOT"
|
|
|
|
:description "A Jepsen test for Memgraph"
|
|
|
|
:url "https://memgraph.com/"
|
|
|
|
:license {:name "Memgraph Enterprise"
|
|
|
|
:url "https://github.com/memgraph/memgraph/blob/master/release/LICENSE_ENTERPRISE.md"}
|
|
|
|
:main jepsen.memgraph.core
|
|
|
|
:dependencies [[org.clojure/clojure "1.10.0"]
|
2023-07-20 03:18:43 +08:00
|
|
|
;; 0.2.4-SNAPSHOT but 0.3.0, for more -> https://clojars.org/jepsen/versions
|
|
|
|
[jepsen "0.2.4-SNAPSHOT"]
|
2020-12-10 00:07:09 +08:00
|
|
|
[gorillalabs/neo4j-clj "4.1.0"]]
|
|
|
|
:profiles {:test {:dependencies [#_[org.neo4j.test/neo4j-harness "4.1.0"]]}}
|
2023-07-20 03:18:43 +08:00
|
|
|
;; required to run 0.3.0
|
|
|
|
; :aot :all
|
2020-12-10 00:07:09 +08:00
|
|
|
:repl-options {:init-ns jepsen.memgraph.core})
|