Skip to content

Instantly share code, notes, and snippets.

@lukaszkorecki
Last active June 14, 2017 07:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukaszkorecki/7baef782a209d642d0ab36f600e7d681 to your computer and use it in GitHub Desktop.
Save lukaszkorecki/7baef782a209d642d0ab36f600e7d681 to your computer and use it in GitHub Desktop.
(defproject some-app "0.1.0"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:repositories [["bintray"
{:url "https://fruit.bintray.com/bananas"
:snapshots true
:username :env/bintray_username
:password :env/bintray_api_key}]]
:dependencies [[org.clojure/clojure "1.7.0"]
[some-lib "0.1.0"
:exclude [org.clojure/clojure]]]
:main ^:skip-aot some-app.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment