project.clj 585 B

1234567891011121314
  1. (defproject hello "compojure"
  2. :description "JSON/Database tests"
  3. :url "http://example.com/FIXME"
  4. :dependencies [[org.clojure/clojure "1.5.1"]
  5. [compojure "1.1.5"]
  6. [ring/ring-json "0.2.0"]
  7. [korma "0.3.0-RC5"]
  8. [log4j "1.2.15" :exclusions [javax.mail/mail javax.jms/jms com.sun.jdmk/jmxtools com.sun.jmx/jmxri]]
  9. [mysql/mysql-connector-java "5.1.6"]
  10. ]
  11. :plugins [[lein-ring "0.8.2"]]
  12. :ring {:handler hello.handler/app}
  13. :profiles
  14. {:dev {:dependencies [[ring-mock "0.1.3"]]}})