-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
23 lines (23 loc) · 1.26 KB
/
project.clj
File metadata and controls
23 lines (23 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(defproject com.oscaro/ds-test-tools "0.3.1-SNAPSHOT"
:description "Tools to test Datasplash pipelines"
:url "https://github.com/oscaro/ds-test-tools"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.12.1"]
[datasplash "0.7.30"]
[com.oscaro/tools-io "0.3.41"]
[com.github.luben/zstd-jni "1.5.7-3"]]
:deploy-repositories [["snapshots" {:url "https://repo.clojars.org"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]
["releases" {:url "https://repo.clojars.org"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases true}]]
:signing {:gpg-key "[email protected]"}
:aot :all
:profiles {:dev {:global-vars {*warn-on-reflection* true}
:plugins [[lein-codox "0.10.2"]]
:dependencies [[org.clojure/tools.namespace "1.5.0"]]
:source-paths ["dev"]}})