forked from jepsen-io/mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
17 lines (17 loc) · 869 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject jepsen.mysql "0.0.1"
:description "Tests for MySQL with read replicas"
:url "https://github.com/jepsen-io/jepsen"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.11.1"]
[cheshire "5.12.0"]
[jepsen "0.3.5"]
[http-kit "2.7.0"]
[com.github.seancorfield/next.jdbc "1.3.894"]
[com.mysql/mysql-connector-j "8.1.0"]
[org.mariadb.jdbc/mariadb-java-client "3.2.0"]]
:main jepsen.mysql.cli
:repl-options {:init-ns jepsen.mysql.cli}
:jvm-opts ["-Djava.awt.headless=true"
;"-agentpath:/home/aphyr/yourkit/bin/linux-x86-64/libyjpagent.so=disablestacktelemetry,exceptions=disable,delay=1000"
"-server"])