-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
21 lines (18 loc) · 1.05 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject district0x/district-ui-component-form "0.2.15-SNAPSHOT"
:description "district UI forms library "
:url "https://github.com/district0x/district-ui-component-form"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojurescript "1.10.520"]
[reagent "0.8.1"]]
:deploy-repositories [["snapshots" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]
["releases" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]]
:release-tasks [["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["deploy"]])