Skip to content

Instantly share code, notes, and snippets.

@adamstegman
Created March 23, 2013 06:12

Revisions

  1. adamstegman created this gist Mar 23, 2013.
    27 changes: 27 additions & 0 deletions project.clj
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,27 @@
    (defproject melnitz "1.0.0-SNAPSHOT"
    :description "Sorts the mail (from an Exchange server) and presents it in a dashboard so you can act on it instead of trying to figure out threads on your own."
    :url "http://github.com/adamstegman/melnitz"
    :dependencies [[com.edgecase/dieter "0.4.0"]
    [commons-httpclient/commons-httpclient "3.1"]
    [commons-logging/commons-logging-api "1.1"]
    [microsoft.exchange/webservices "1.2"]
    [org.clojure/clojure "1.4.0"]
    [org.samba.jcifs/jcifs "1.3.3"]
    [cheshire "5.0.2"]
    [clj-yaml "0.4.0"]
    [compojure "1.1.5"]
    [fleet "0.10.1"]
    ; dieter dependencies
    [ring/ring-core "1.1.8"]
    [clj-time "0.4.4"]
    [com.google.javascript/closure-compiler "r1592"]
    [clj-v8 "0.1.4"]
    [clj-v8-native "0.1.4"]
    [org.mozilla/rhino "1.7R4"]
    [org.clojure/clojure "1.4.0"]]
    :repositories {"project" "file:repo"}
    :plugins [[lein-ring "0.8.2"]]
    :ring {:handler melnitz.handler/app}
    :profiles
    {:dev {:dependencies [[ring-mock "0.1.3"]
    [lein-dieter-precompile "0.2.0"]]}})