-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.clj
18 lines (18 loc) · 1007 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject clojure-google-sheets "0.1.0-SNAPSHOT"
:description "clojure google sheets api integration"
:url "https://github.com/pvgomes/clojure-google-sheets"
: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"]
[clj-time "0.12.2"]
[prismatic/schema "1.1.12"]
[com.google.api-client/google-api-client "1.28.0"]
[com.google.oauth-client/google-oauth-client-jetty "1.28.0"]
[com.google.apis/google-api-services-sheets "v4-rev566-1.25.0"]
[org.clojure/tools.cli "0.4.1"]
[org.clojure/data.json "1.0.0"]]
:aliases {"lint" ["do" ["cljfmt" "check"] ["nsorg"]]
"lint-fix" ["do" ["cljfmt" "fix"] ["nsorg" "--replace"]]}
:main ^:skip-aot clojure-google-sheets.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})