-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
24 lines (19 loc) · 1.04 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
;; Copyright ©️ Rachel Bowyer 2016, 2017, 2021. All rights reserved.
;;
;; This program and the accompanying materials
;; are made available under the terms of the Eclipse Public License v1.0
;; which accompanies this distribution, and is available at
;; http://www.eclipse.org/legal/epl-v10.html
(defproject rachbowyer/keirin "1.1.2"
:description "Microbenchmarking library for Clojure"
:url "https://github.com/rachbowyer/keirin"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/tools.logging "0.3.1"]]
:target-path "target/%s"
:profiles {:dev {:global-vars {*warn-on-reflection* true *assert* true}
:jvm-opts ^:replace ["-Dclojure.compiler.direct-linking=true" "-server"
"-Xlog:gc:gc.out" "-XX:-TieredCompilation" "-Xbatch"]}
:uberjar {:jvm-opts ^:replace ["-Dclojure.compiler.direct-linking=true"]
:aot :all}})