Skip to content

Instantly share code, notes, and snippets.

@lukaszkorecki
Last active June 14, 2017 07:55
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/82a9851239f17fce53f0222b4e6b822f to your computer and use it in GitHub Desktop.
Save lukaszkorecki/82a9851239f17fce53f0222b4e6b822f to your computer and use it in GitHub Desktop.
(defproject some-lib "0.1.0"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:deploy-repositories [["releases"
{:url
"https://api.bintray.com/maven/fruit/bananas/some-lib/;publish=1"
:sign-releases false
:username :env/bintray_username
:password :env/bintray_api_key}]
["snapshots"
{:url "https://api.bintray.com/maven/fruit/bananas/some-lib/;publish=1"
:sign-releases false
:username :env/bintray_username
:password :env/bintray_api_key}]]
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment