diff --git a/lein-pprint/project.clj b/lein-pprint/project.clj index d9fb0567c..1e7668a10 100644 --- a/lein-pprint/project.clj +++ b/lein-pprint/project.clj @@ -1,3 +1,6 @@ -(defproject lein-pprint "1.1.1" +(defproject lein-pprint "1.1.2" :description "Pretty-print a representation of the project map." + :url "https://github.com/technomancy/leiningen" + :license {:name "Eclipse Public License" + :url "http://www.eclipse.org/legal/epl-v10.html"} :eval-in-leiningen true) diff --git a/lein-pprint/src/leiningen/pprint.clj b/lein-pprint/src/leiningen/pprint.clj index 4d3bd7477..176eb77a3 100644 --- a/lein-pprint/src/leiningen/pprint.clj +++ b/lein-pprint/src/leiningen/pprint.clj @@ -1,11 +1,11 @@ (ns leiningen.pprint (:require [clojure.pprint :as pprint])) -(defn pprint +(defn ^:no-project-needed pprint "Pretty-print a representation of the project map." [project & keys] (if (seq keys) (doseq [k keys] (pprint/pprint (project (read-string k)))) (pprint/pprint project)) - (flush)) \ No newline at end of file + (flush))