Skip to content

Instantly share code, notes, and snippets.

@jhubert
Created April 23, 2014 05:00
Show Gist options
  • Save jhubert/11203208 to your computer and use it in GitHub Desktop.
Save jhubert/11203208 to your computer and use it in GitHub Desktop.
(defproject clojure-rest "0.1.0-SNAPSHOT"
:description "My First Clojure App"
:url "http://github.com/jhubert/clojure-app"
:dependencies [[org.clojure/clojure "1.5.1"]
[compojure "1.1.6"]
[ring/ring-json "0.1.2"]
[c3p0/c3p0 "0.9.1.2"]
[org.clojure/java.jdbc "0.2.3"]
[com.h2database/h2 "1.3.168"]
[cheshire "4.0.3"]]
:plugins [[lein-ring "0.8.10"]]
:ring {:handler clojure-rest.handler/app}
:profiles
{:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[ring-mock "0.1.5"]]}})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment