joelittlejohn / lein-embongo

Leiningen plugin for running 'embedded' MongoDB
https://clojars.org/lein-embongo
Eclipse Public License 1.0
9 stars 1 forks source link

Move configuration options into map with key :embongo #3

Closed joelittlejohn closed 12 years ago

joelittlejohn commented 12 years ago

Migrate from this config:

(defproject...
  :mongo-port 27017
  :mongo-version "2.0.4")

to this config:

(defproject...
  :embongo {:port 27017
            :version "2.0.4"})

To avoid polluting the root of the project.clj.

joelittlejohn commented 12 years ago

Done. Will be part of 0.2.0.