d7d867712163

Update to Clojure 1.4 and Leiningen 2.
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Thu, 31 May 2012 18:37:33 -0400
parents eb08d252e542
children 91957083ba74
branches/tags (none)
files .gitignore .hgignore docs/source/quickstart.rst project.clj

Changes

--- a/.gitignore	Thu May 31 18:35:46 2012 -0400
+++ b/.gitignore	Thu May 31 18:37:33 2012 -0400
@@ -4,6 +4,8 @@
 *.war
 lib
 classes
+checkouts
+target
 build
 /clojurecraft
 *.orig
--- a/.hgignore	Thu May 31 18:35:46 2012 -0400
+++ b/.hgignore	Thu May 31 18:37:33 2012 -0400
@@ -6,6 +6,8 @@
 lib
 classes
 build
+target
+checkouts
 /clojurecraft
 *.orig
 bundled
--- a/docs/source/quickstart.rst	Thu May 31 18:35:46 2012 -0400
+++ b/docs/source/quickstart.rst	Thu May 31 18:37:33 2012 -0400
@@ -11,8 +11,7 @@
     wget https://bitbucket.org/sjl/clojurecraft/get/tip.tar.gz -O clojurecraft.tar.gz
     tar xzf clojurecraft.tar.gz
 
-Grab the dependencies using Leiningen (Cake will probably work too) and fire up
-a REPL::
+Grab the dependencies using Leiningen 2 and fire up a REPL::
 
     cd clojurecraft
     lein deps
--- a/project.clj	Thu May 31 18:35:46 2012 -0400
+++ b/project.clj	Thu May 31 18:37:33 2012 -0400
@@ -1,6 +1,7 @@
 (defproject clojurecraft "0.0.1-SNAPSHOT"
+  :min-lein-version "2.0.0"
   :description "A framework for writing Minecraft bots in Clojure."
-  :dependencies [[clojure "1.3.0"]
+  :dependencies [[org.clojure/clojure "1.4.0"]
                  [org.clojure/math.combinatorics "0.0.2"]
                  [org.clojure/math.numeric-tower "0.0.1"]]
   :jvm-opts ["-Xmx1g"])