Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;;;; File: project.clj
- ;;;; SPDX-License-Identifier: Unlicense
- (defproject hello "0.1.0"
- :description "A Clojure hello world program."
- :license {:name "Unlicense"
- :url "https://unlicense.org/"
- :distribution :repo}
- :min-lein-version "2.9.0"
- :dependencies [[org.clojure/clojure "1.10.3"]
- [midje "1.10.5" :exclusions [org.clojure/clojure org.clojure/core.unify]]]
- :plugins [[com.livingsocial/lein-dependency-check "1.1.6"]
- [lein-binplus "0.6.6"]
- [lein-checkall "0.1.1"]
- [lein-ancient "0.6.15"]
- [lein-codox "0.10.7"]
- [lein-instant-cheatsheet "2.2.2" :exclusions [org.clojure/tools.reader]]
- [lein-libdir "0.1.1"]
- [lein-licenses "0.2.2"]
- [lein-localrepo "0.5.4" :exclusions [org.clojure/tools.cli]]
- [lein-midje "3.2.1"]
- [lein-marginalia "0.9.1"]
- [lein-set-version "0.4.1"]
- [lein-try "0.4.3"]]
- :codox {:metadata {:doc/format :markdown}}
- :main hello.core
- :aot :all)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement