Skip to content

Instantly share code, notes, and snippets.

@cap10morgan
Created August 13, 2013 19:38
Show Gist options
  • Save cap10morgan/6224871 to your computer and use it in GitHub Desktop.
Save cap10morgan/6224871 to your computer and use it in GitHub Desktop.
(defproject mail-batcher "0.0.1-SNAPSHOT"
:description "Find and generate forms for registrations and elections in date range"
:dependencies [[org.clojure/clojure "1.5.1"]
[turbovote/clj-time "0.5.1-SNAPSHOT"]
[korma "0.3.1-SNAPSHOT"]
[mysql/mysql-connector-java "5.1.24"]
[sonian/carica "1.0.2"]
[cheshire "5.1.1"]
[resque-clojure "0.2.2"]
[org.clojure/tools.cli "0.2.2"]
[clojure-csv "2.0.0-alpha2"]
[clj-yaml "0.4.0"]]
:profiles {:dev {:dependencies [[midje "1.5.0"]
[clj-factory "0.2.1"]
[utilize "0.2.3"]]}
:test {:dependencies [[midje "1.5.0"]
[clj-factory "0.2.1"]
[utilize "0.2.3"]]
:plugins [[lein-midje "3.0.1"]]
:resource-paths ["test-resources"]}
:staging {:resource-paths ["staging-resources"]}
:production {:resource-paths ["production-resources"]}}
:main mail-batcher.core
:aliases {"midje" ["with-profile" "test" "midje"]
"test" ["with-profile" "test" "midje"]})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment