Skip to content

Instantly share code, notes, and snippets.

@jplindstrom
Created June 15, 2015 12:02
Show Gist options
  • Save jplindstrom/5f59982d5f286ec53736 to your computer and use it in GitHub Desktop.
Save jplindstrom/5f59982d5f286ec53736 to your computer and use it in GitHub Desktop.
Reminder: clojure project.clj when cider complains about bad versions
(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