leiningen/project.clj

41 lines
1.7 KiB
Clojure
Raw Normal View History

;; This is Leiningen's own project configuration. See doc/TUTORIAL.md
;; file as well as sample.project.clj for help writing your own.
2012-03-12 03:57:50 +00:00
(defproject leiningen "2.0.0-SNAPSHOT"
:description "Automate Clojure projects without setting your hair on fire."
2010-12-03 02:16:16 +00:00
:url "https://github.com/technomancy/leiningen"
2012-02-09 06:55:48 +00:00
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
2012-03-09 04:33:47 +00:00
:dependencies [[leiningen-core "2.0.0-preview2"]
[clucy "0.2.3"]
[useful "0.7.6-alpha1"]
2012-03-12 04:09:14 +00:00
[lein-newnew "0.2.5"]
2012-03-13 03:51:56 +00:00
[reply "0.1.0-alpha6"]
[org.clojure/data.xml "0.0.3"]
[bultitude "0.1.3"]
[clj-http "0.3.3"]]
;; checkout-deps don't work with :eval-in :leiningen
:profiles {:dev {:resource-paths ["leiningen-core/dev-resources"]
:test-paths ["leiningen-core/test"]}}
:test-selectors {:default (complement :post-preview)
2012-03-16 18:34:14 +00:00
:offline (complement :online)}
:source-paths ["leiningen-core/src" "src"]
:aot [#"leiningen"]
:eval-in :leiningen)
;;; Release Checklist
2012-03-07 20:06:48 +00:00
;; * update NEWS, bin/lein, bin/lein.bat, project.clj, leiningen-core/project.clj
;; * publish leiningen-core to clojars
;; * rm -rf target ~/.lein/self-installs/leiningen-*-SNAPSHOT-standalone.jar
;; * temporarily add :aot :all to leiningen-core/project.clj; lein install
2012-03-07 20:06:48 +00:00
;; * bin/lein uberjar, copy standalone to ~/.lein/self-installs
;; * ensure "time lein version" isn't bad
;; * upload to github
;; * test self-install
;; * git tag
;; * push, push tags, update stable branch
;; * announce on mailing list
2012-03-07 22:24:03 +00:00
;; * bump version numbers back to snapshot
;; * regenerate pom.xml