forked from technomancy/leiningen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
18 lines (17 loc) · 826 Bytes
/
Copy pathproject.clj
File metadata and controls
18 lines (17 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
;; The only requirement of the project.clj file is that it includes a
;; defproject form. It can have other code in it as well, including
;; loading other task definitions.
(defproject leiningen "1.7.1"
:description "Automate Clojure projects without setting your hair on fire."
:url "https://github.com/technomancy/leiningen"
:license {:name "Eclipse Public License"}
:dependencies [[org.clojure/clojure "1.2.1"]
[org.clojure/clojure-contrib "1.2.0"]
[clucy "0.2.2"]
[lancet "1.0.1"]
[jline "0.9.94" :exclusions [junit]]
[robert/hooke "1.1.2"]
[org.apache.maven/maven-ant-tasks "2.1.3" :exclusions [ant]]]
:test-selectors {:offline (complement :online)}
:disable-implicit-clean true
:eval-in-leiningen true)