-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
18 lines (13 loc) · 723 Bytes
/
Copy pathproject.clj
File metadata and controls
18 lines (13 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject libdev/clj-template "0.3.1-SNAPSHOT"
:description "A clj-new template for building Clojure libraries with bespoke a dev environment & tooling"
:url "https://github.com/RickMoynihan/libdev"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:plugins [[lein-tools-deps "0.4.1"]]
:middleware [lein-tools-deps.plugin/resolve-dependencies-with-deps-edn]
;; Dependencies provided by deps.edn are merged with any found in
;; your configured leiningen profile.
;;:dependencies [[clj-time "0.14.4"]]
;; How to resolve deps files
:lein-tools-deps/config {:config-files [:install :user :project]}
:deploy-repositories [["releases" :clojars]])