forked from slagyr/speclj
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
32 lines (25 loc) · 1.41 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
(defproject speclj "3.3.2"
:description "speclj: Pronounced 'speckle', is a Behavior Driven Development framework for Clojure."
:url "http://speclj.com"
:license {:name "The MIT License"
:url "file://LICENSE"
:distribution :repo
:comments "Copyright 2011-2015 Micah Martin All Rights Reserved."}
:jar-exclusions [#"\.cljx|\.swp|\.swo|\.DS_Store"]
:javac-options ["-target" "1.5" "-source" "1.5"]
:source-paths ["src"]
:test-paths ["spec" "dev"]
:java-source-paths ["src"]
:dependencies [[org.clojure/clojure "1.8.0"]
[fresh "1.1.2"]
[mmargs "1.2.0"]
[trptcolin/versioneer "0.1.1"]]
:profiles {:dev {:dependencies [[org.clojure/clojurescript "1.8.40"]]
:plugins [[codox "0.8.11" :exclusions [org.clojure/clojure]]]}}
:prep-tasks ["javac" "compile"]
:aliases {"cljs" ["do" "clean," "run" "-m" "speclj.dev.cljs"]
"spec" ["do" "run" "-m" "speclj.dev.spec"]
"ci" ["do" "spec," "cljs"]}
:codox {:src-dir-uri "http://github.com/slagyr/speclj/blob/3.3.2/"
:src-linenum-anchor-prefix "L"}
)