-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
22 lines (19 loc) · 1.14 KB
/
project.clj
File metadata and controls
22 lines (19 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject district0x/district-encryption "1.0.2-SNAPSHOT"
:description "Set of functions helpful for data encryption on blockchain based on public/private key"
:url "https://github.com/district0x/district-encryption"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[cljsjs/eccjs "0.3.1-0"]
[org.clojure/clojurescript "1.9.946"]]
:npm {:dependencies [[eccjs "0.3.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"]])