Advertisement
justin_hanekom

Clojure projects.clj with default dependencies, plugins

Feb 1st, 2025
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;;;; File: project.clj
  2. ;;;; SPDX-License-Identifier: Unlicense
  3.  
  4. (defproject hello "0.1.0"
  5.   :description "A Clojure hello world program."
  6.   :license {:name "Unlicense"
  7.             :url "https://unlicense.org/"
  8.             :distribution :repo}
  9.   :min-lein-version "2.9.0"
  10.   :dependencies [[org.clojure/clojure "1.10.3"]
  11.                 [midje "1.10.5" :exclusions [org.clojure/clojure org.clojure/core.unify]]]
  12.   :plugins [[com.livingsocial/lein-dependency-check "1.1.6"]
  13.             [lein-binplus "0.6.6"]
  14.             [lein-checkall "0.1.1"]
  15.             [lein-ancient "0.6.15"]
  16.             [lein-codox "0.10.7"]
  17.             [lein-instant-cheatsheet "2.2.2" :exclusions [org.clojure/tools.reader]]
  18.             [lein-libdir "0.1.1"]
  19.             [lein-licenses "0.2.2"]
  20.             [lein-localrepo "0.5.4" :exclusions [org.clojure/tools.cli]]
  21.             [lein-midje "3.2.1"]
  22.             [lein-marginalia "0.9.1"]
  23.             [lein-set-version "0.4.1"]
  24.             [lein-try "0.4.3"]]
  25.   :codox {:metadata {:doc/format :markdown}}
  26.   :main hello.core
  27.   :aot :all)
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement