-
Notifications
You must be signed in to change notification settings - Fork 6
/
project.clj
34 lines (30 loc) · 1.77 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
34
(defproject carocad/parcera "0.11.6"
:description "Grammar-based Clojure(script) parser"
:url "https://github.com/carocad/parcera"
:license {:name "LGPLv3"
:url "https://github.com/carocad/parcera/blob/master/LICENSE.md"}
:source-paths ["src/clojure"]
:java-source-paths ["src/java"]
:javac-options ["-target" "1.8" "-source" "1.8"]
:dependencies [[org.clojure/clojure "1.10.1"]]
:profiles {:dev {:dependencies [[criterium/criterium "0.4.5"] ;; benchmark
[org.clojure/test.check "0.10.0"] ;; generative testing
;; https://github.com/bhauman/figwheel-main/issues/161
[com.bhauman/figwheel-main "0.2.0"]] ;; cljs repl
:plugins [[jonase/eastwood "0.3.5"]] ;; linter
;; java reloader
;[lein-virgil "0.1.9"]]
:resource-paths ["target"]
:clean-targets ^{:protect false} ["target"]}
:provided {:dependencies [[org.clojure/clojurescript "1.10.597"]
[org.antlr/antlr4-runtime "4.7.1"]]}}
:aliases {"test-runner" ["trampoline" "run"
"-m" "figwheel.main"
"-co" "tests.cljs.edn"
"-m" "parcera.test-runner"]}
:test-selectors {:default (fn [m] (not (some #{:benchmark} (keys m))))
:benchmark :benchmark}
:deploy-repositories [["clojars" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]])