forked from Engelberg/instaparse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
17 lines (17 loc) · 776 Bytes
/
project.clj
File metadata and controls
17 lines (17 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject instaparse "1.3.2"
:description "Instaparse: No grammar left behind"
:url "https://github.com/Engelberg/instaparse"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0-beta1"]]
:profiles {:dev {:dependencies
[[org.clojure/tools.trace "0.7.5"]
[criterium "0.3.1"]
[rhizome "0.1.8"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}}
:aliases {"test-all" ["with-profile" "+1.5:+1.6" "test"]}
:test-paths ["test"]
:target-path "target"
:scm {:name "git"
:url "https://github.com/Engelberg/instaparse"})