-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.clj
More file actions
38 lines (33 loc) · 1.5 KB
/
Copy pathproject.clj
File metadata and controls
38 lines (33 loc) · 1.5 KB
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
35
36
37
38
(defproject monglorious "0.8.0"
:author "Dave Bauman"
:description "Query MongoDB using strings!"
:url "https://github.com/baumandm/monglorious"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo}
:dependencies [[org.clojure/clojure "1.8.0"]
[instaparse "1.4.9"]
[com.novemberain/monger "3.1.0"]
[org.clojars.frozenlock/commons-lang "3.3.0"]
[clj-time "0.13.0"]]
:target-path "target/%s"
:javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"]
:profiles {:dev {:dependencies [[midje "1.9.4"]
[org.slf4j/slf4j-nop "1.7.25"]]
:plugins [[lein-midje "3.2.1"]
[lein-kibit "0.1.3"]
[jonase/eastwood "0.2.3"]
[lein-codox "0.10.3"]]}
:uberjar {:aot :all}}
:codox {:namespaces [monglorious.core monglorious.parser]}
:release-tasks [["vcs" "assert-committed"]
["clean"]
["kibit"]
["midje"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag"]
["deploy" "clojars"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]]
)