Created
June 15, 2015 12:02
-
-
Save jplindstrom/5f59982d5f286ec53736 to your computer and use it in GitHub Desktop.
Reminder: clojure project.clj when cider complains about bad versions
This file contains 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 scaper "0.1.0-SNAPSHOT" | |
:description "FIXME: name" | |
:url "http://example.com/FIXME" | |
:license {:name "Eclipse Public License" | |
:url "http://www.eclipse.org/legal/epl-v10.html"} | |
:dependencies [[org.clojure/clojure "1.6.0"]] | |
:main ^:skip-aot scaper.core | |
:target-path "target/%s" | |
:profiles { | |
:uberjar {:aot :all} | |
:dev {:plugins [[cider/cider-nrepl "0.9.0-SNAPSHOT"]] | |
:dependencies [[org.clojure/tools.nrepl "0.2.7"]]} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment