From 9804ace8ddb1d107dda3703971ed34c7c7f7f6c2 Mon Sep 17 00:00:00 2001 From: Russ Miles Date: Fri, 3 Aug 2012 00:13:23 +0100 Subject: [PATCH] Added specification for Leiningen to run main class so that 'lein run run' will work, as will 'lein run test' --- project.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project.clj b/project.clj index 91ba3db..3087126 100644 --- a/project.clj +++ b/project.clj @@ -2,5 +2,5 @@ :description "The functional koans." :dependencies [[org.clojure/clojure "1.3.0"] [koan-engine "0.1.2-SNAPSHOT"]] - :dev-dependencies [[swank-clojure "1.3.0" :exclusions [org.clojure/clojure]] - [lein-koan "0.1.0"]]) + :dev-dependencies [[swank-clojure "1.3.0" :exclusions [org.clojure/clojure]] [lein-koan "0.1.0"]] + :main koan-engine.runner/exec)