-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
25 lines (25 loc) · 1.2 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
(defproject com.wallbrew/bouncer "1.1.1"
:description "A Leiningen plugin to manage Leiningen."
:url "https://github.com/Wall-Brew-Co/bouncer"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"
:distribution :repo
:comments "Same-as all Wall-Brew projects"}
:scm {:name "git"
:url "https://github.com/Wall-Brew-Co/bouncer"}
:dependencies [[org.clojure/clojure "1.12.0"]
[metosin/spec-tools "0.10.7"]]
:plugins [[com.github.clj-kondo/lein-clj-kondo "2024.09.27"]
[com.wallbrew/lein-sealog "1.8.0"]
[com.wallbrew/bouncer "1.1.1"]
[mvxcvi/cljstyle "0.16.630"]]
:pom-addition [:organization
[:name "Wall Brew Co."]
[:url "https://wallbrew.com"]]
:profiles {:dev {:dependencies [[org.clojure/test.check "1.1.1"]]}}
:deploy-repositories [["clojars" {:url "https://clojars.org/repo"
:username :env/clojars_user
:password :env/clojars_pass
:sign-releases false}]]
:deploy-branches ["master"]
:eval-in-leiningen true)