From 1d4aace377d4a6c553dd937f8f9c629b912fc739 Mon Sep 17 00:00:00 2001 From: Phil Hagelberg Date: Sat, 14 Nov 2009 15:36:10 -0800 Subject: [PATCH] Oops; forgot to update dependency notation in readme. --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7391d63e..599d161d 100644 --- a/README.md +++ b/README.md @@ -37,12 +37,12 @@ TODO: install, new, help, deploy, pom Place a project.clj file in the project root that looks something like this: (defproject leiningen "1.0-SNAPSHOT" - :dependencies [[org.clojure clojure "1.1.0-alpha-SNAPSHOT"] - [org.clojure clojure-contrib "1.0-SNAPSHOT"] - [org.clojure lancet "1.0-SNAPSHOT"] - [org.apache.ant ant "1.7.1"] - [org.apache.ant ant-launcher "1.7.1"] - [org.apache.maven maven-ant-tasks "2.0.10"]]) + :dependencies [[org.clojure/clojure "1.1.0-alpha-SNAPSHOT"] + [org.clojure/clojure-contrib "1.0-SNAPSHOT"] + [org.clojure/lancet "1.0-SNAPSHOT"] + [org.apache.ant/ant "1.7.1"] + [org.apache.ant/ant-launcher "1.7.1"] + [org.apache.maven/maven-ant-tasks "2.0.10"]]) Other keys you can set are :namespaces to compile if you don't want all of them AOT'd as well as a :main namespace for building executable jars.