-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.clj
17 lines (17 loc) · 951 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject studiokalavati/sargam-spec "0.1.15"
:description "Clojure and json spec for Bhatkhande notation"
:url "https://github.com/Studio-kalavati/sargam-spec"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:repositories [
["github" {:url "https://maven.pkg.github.com/studio-kalavati/sargam-spec"
:username [:env/GITHUB_USER] :password [:env/GITHUB_TOKEN]
:sign-releases false}]
["releases" {:url "https://repo.clojars.org"
:username :env
:password :env
}]]
:deploy-repositories [["releases" :clojars] ["snapshots" :clojars]]
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/data.json "0.2.6"] ]
:repl-options {:init-ns sargam-spec.core})