forked from aphyr/clj-antlr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
18 lines (18 loc) · 803 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject clj-antlr "0.2.5-SNAPSHOT"
:description "Clojure bindings for the ANTLR 4 parser library."
:url "http://github.com/aphyr/clj-antlr"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.antlr/antlr4-runtime "4.5.3"]
[org.antlr/antlr4 "4.5.3"]]
:profiles {:dev {:dependencies
[[criterium "0.4.4"]
[cheshire "5.6.3"]
[org.clojure/test.check "0.9.0"]
[instaparse "1.4.2"]]}}
:java-source-paths ["src/java/"]
:test-selectors {:default (complement :perf)
:perf :perf
:all (fn [_] true)}
:global-vars {*warn-on-reflection* true})