-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
22 lines (22 loc) · 977 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
(defproject luhhujbb/clj-aliyun "0.2.4"
:description "Basic clojure lib to interact with aliyun ECS API"
:url "https://github.com/luhhujbb/clj-aliyun"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/java.data "0.1.1"]
;; logging stuff
[org.clojure/tools.logging "0.3.1"]
[org.slf4j/slf4j-api "1.7.19"]
[org.slf4j/slf4j-log4j12 "1.7.19"]
[org.slf4j/jcl-over-slf4j "1.7.19"]
[log4j "1.2.17"]
[cheshire "5.6.3"]
;;alicloud
[com.aliyun/aliyun-java-sdk-core "4.1.1"]
[com.aliyun/aliyun-java-sdk-ecs "4.11.0"]]
:source-paths ["src/clj"]
:java-source-paths ["src/java"]
:javac-options ["-Xlint:deprecation"]
:profiles {:uberjar {:aot :all}
:dev {:aot :all}})