-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.clj
28 lines (22 loc) · 944 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(defproject google-drive-file-uploader "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
: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/"}
:dependencies [[org.clojure/clojure "1.10.0"]
[com.google.api-client/google-api-client "1.33.0"]
;;http client
[clj-http "3.10.0"]
;;json
[metosin/jsonista "0.2.4"]
[camel-snake-kebab "0.4.0"]
;;time
[clojure.java-time "0.3.2"]
;;command-line
[cli-matic "0.3.11"]
;;error handling
[failjure "2.0.0"]
;;testing
[mock-clj "0.2.1"]]
:main google-drive-file-uploader.core
:repl-options {:init-ns google-drive-file-uploader.core})