-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
33 lines (25 loc) · 1.11 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
(defproject sliver "0.0.2-SNAPSHOT"
:description "A library to ease the simulation of native Erlang nodes."
:url "http://github.com/ulises/sliver"
:license {:name "MIT"
:url "http://opensource.org/licenses/MIT"
:distribution :repo}
:deploy-repositories [["releases" {:url "https://clojars.org/repo"
:creds :gpg}]
["snapshots" {:url "https://clojars.org/repo"
:creds :gpg}]]
:signing {:gpg-key "0E96E893"}
:scm {:name "git"
:url "https://github.com/ulises/sliver"}
:dependencies [[org.clojure/clojure "1.8.0"]
[bytebuffer "0.2.0"]
[com.taoensso/timbre "3.3.1"]
[borges "0.1.6"]
[co.paralleluniverse/pulsar "0.7.7"]]
:java-agents [[co.paralleluniverse/quasar-core "0.7.7"
:classifier "jdk8"
:options "m"]]
:jvm-opts ["-Djava.awt.headless=true"
"-Dco.paralleluniverse.pulsar.instrument.auto=all"]
:global-vars {*warn-on-reflection* true}
:aot :all)