Skip to content

Instantly share code, notes, and snippets.

@vijaykiran
Created October 6, 2015 13:50
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 vijaykiran/9b5f8b9bc09c9b2641db to your computer and use it in GitHub Desktop.
Save vijaykiran/9b5f8b9bc09c9b2641db to your computer and use it in GitHub Desktop.
(defproject clj-slackbot "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[compojure "1.4.0"]
[clojail "1.0.6"]
[clj-http "2.0.0"]
[cheshire "5.5.0"]
[environ "1.0.1"]
[stylefruits/gniazdo "0.4.1" ]
[ring/ring-jetty-adapter "1.4.0"]
[ring/ring-defaults "0.1.5"]]
:plugins [[lein-ring "0.8.13"]]
:uberjar-name "clj-slackbot.jar"
:main clj-slackbot.core
:profiles
{:dev {:repl-options {:init-ns clj-slackbot.core.handler}
:dependencies [[javax.servlet/servlet-api "2.5"]
[ring-mock "0.1.5"]]}
:uberjar {:aot :all}})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment