-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
19 lines (18 loc) · 1.01 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject cljs-orbitdb "0.0.9-SNAPSHOT"
:description "Clojurescript library for interacting with OrbitDB"
:url "https://github.com/"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojurescript "1.10.439"]
[org.clojure/core.async "1.1.587"]]
: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"]])