Created
July 31, 2016 18:34
-
-
Save jacoelho/759a028fef6565ed103e81779ab407de to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defproject todo-rest "0.1.0-SNAPSHOT" | |
| :description "FIXME: write description" | |
| :url "http://example.com/FIXME" | |
| :license {:name "Eclipse Public License" | |
| :url "http://www.eclipse.org/legal/epl-v10.html"} | |
| :dependencies [[org.clojure/clojure "1.8.0"] | |
| [ring "1.5.0"] | |
| [compojure "1.5.1"] | |
| [ring/ring-json "0.4.0"] | |
| [org.clojure/java.jdbc "0.6.1"] | |
| [com.mchange/c3p0 "0.9.5.2"] | |
| [com.h2database/h2 "1.4.192"]] | |
| :min-lein-version "2.0.0" | |
| :main todo-rest.core | |
| :profiles {:dev {:main todo-rest.core/-dev-main} | |
| :uberjar {:aot :all | |
| :uberjar-name "todo-rest.jar"}}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment