-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
27 lines (27 loc) · 1.33 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
26
27
(defproject com.wallbrew/lein-sealog "1.8.0"
:description "A Leiningen plugin for managing your changelog."
:url "https://github.com/Wall-Brew-Co/lein-sealog"
: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/lein-sealog"}
:pom-addition [:organization
[:name "Wall Brew Co."]
[:url "https://wallbrew.com"]]
:dependencies [[com.wallbrew/spoon "1.4.0"]
[java-time-literals/java-time-literals "2018-04-06"]
[metosin/spec-tools "0.10.7"]
[org.clojure/clojure "1.12.0"]]
:plugins [[com.github.clj-kondo/lein-clj-kondo "2024.09.27"]
[com.wallbrew/bouncer "1.1.1"]
[com.wallbrew/lein-sealog "1.8.0"]
[mvxcvi/cljstyle "0.16.630"]]
: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)