Skip to content

Instantly share code, notes, and snippets.

@jakemcc
Created November 4, 2013 00:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakemcc/7296462 to your computer and use it in GitHub Desktop.
Save jakemcc/7296462 to your computer and use it in GitHub Desktop.
Modified https://github.com/bitemyapp/revise/blob/master/project.clj to work with lein-test-refresh. `lein-protobuf` depends on an old version of `leinjacker` which has too strict of constraints for modern Leiningen versions.
(defproject revise "0.0.2"
:description "RethinkDB client for Clojure"
:url "github.com/bitemyapp/revise/"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:main bitemyapp.revise.core
:plugins [[lein-protobuf "0.3.1" :exclusions [leinjacker]]
[lein-difftest "2.0.0"]
[com.jakemccrary/lein-test-refresh "0.1.2"]]
:test-selectors {:default (fn [_] true) ;; (complement :integration)
:race-condition :race-condition
:all (fn [_] true)}
:dependencies [[org.clojure/clojure "1.5.1"]
[robert/bruce "0.7.1"]
[org.flatland/protobuf "0.7.2"]]
:repl-options {:port 7779})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment