forked from technomancy/leiningen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
39 lines (38 loc) · 1.9 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
35
36
37
38
39
;; This is Leiningen's own project configuration. See doc/TUTORIAL.md
;; file as well as sample.project.clj for help writing your own.
(defproject leiningen "2.8.2-SNAPSHOT"
:description "Automate Clojure projects without setting your hair on fire."
:url "https://github.com/technomancy/leiningen"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
;; If you update these, update resources/leiningen/bootclasspath-deps.clj too
:dependencies [[leiningen-core "2.8.2-SNAPSHOT"]
;; needed for pom
[org.clojure/data.xml "0.0.8"]
;; needed for test
[bultitude "0.2.8"]
;; needed for new
[stencil "0.5.0" :exclusions [org.clojure/core.cache]]
;; needed for uberjar
[commons-lang "2.6"]
;; needed for repl
[nrepl "0.4.3"]
;; needed for change
[net.cgrand/sjacket "0.1.1" :exclusions [org.clojure/clojure]]
;; bump versions of various common transitive deps
[net.cgrand/parsley "0.9.3" :exclusions [org.clojure/clojure]]
[scout "0.1.1"]
[commons-io "2.6"]]
;; checkout-deps don't work with :eval-in :leiningen
:profiles {:dev {:resource-paths ["leiningen-core/dev-resources"]
:test-paths ["leiningen-core/test"]}
:uberjar {:aot [#"leiningen"
leiningen.core.ssl ; lazy-loaded
cemerick.pomegranate
classlojure.core
nrepl.core]}}
:test-selectors {:default (complement :disabled)
:offline (comp (partial not-any? identity)
(juxt :online :disabled))}
:source-paths ["leiningen-core/src" "src"]
:eval-in :leiningen)