-
Notifications
You must be signed in to change notification settings - Fork 5
/
pbr.clj
26 lines (25 loc) · 1.36 KB
/
pbr.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
;
; Copyright © 2021 Peter Monks
;
; This Source Code Form is subject to the terms of the Mozilla Public
; License, v. 2.0. If a copy of the MPL was not distributed with this
; file, You can obtain one at https://mozilla.org/MPL/2.0/.
;
; SPDX-License-Identifier: MPL-2.0
;
#_{:clj-kondo/ignore [:unresolved-namespace]}
(defn set-opts
[opts]
(assoc opts
:lib 'com.github.pmonks/unfurl
:version (pbr/calculate-version 1 0)
:prod-branch "release"
:write-pom true
:validate-pom true
:pom {:description "This library implements \"URL unfurling\" approximately according to how Slack does it."
:url "https://github.com/pmonks/unfurl"
:licenses [:license {:name "MPL-2.0" :url "https://www.mozilla.org/en-US/MPL/2.0/"}]
:developers [:developer {:id "pmonks" :name "Peter Monks" :email "[email protected]"}]
:scm {:url "https://github.com/pmonks/unfurl" :connection "scm:git:git://github.com/pmonks/unfurl.git" :developer-connection "scm:git:ssh://[email protected]/pmonks/unfurl.git"}
:issue-management {:system "github" :url "https://github.com/pmonks/unfurl/issues"}}
:codox {:metadata {:doc/format :markdown}}))