leiningen/leiningen-core/dev-resources/p1.clj
Wes Morgan 66cef075e8
Add support for string deps in project.clj
This is needed for rare cases where maven artifact-ids and/or group-ids
aren't valid symbols (e.g. they start with a number).

Test coverage added.
2017-02-01 18:45:34 -07:00

14 lines
607 B
Clojure

(defproject leiningen "2.0.0-SNAPSHOT"
:description "Automate Clojure projects without setting your hair on fire."
:url "https://github.com/technomancy/leiningen"
:license {:name "Eclipse Public License"}
:dependencies [[leiningen-core "2.0.0-SNAPSHOT"]
[clucy "0.2.2" :exclusions [org.clojure/clojure]]
[lancet "1.0.1"]
[robert/hooke "1.1.2"]
[stencil "0.2.0"]
["net.3scale/3scale-api" "3.0.2"]
["clj-http" "3.4.1"]]
:twelve ~(+ 6 2 4)
:disable-implicit-clean true
:eval-in-leiningen true)