This repository has been archived by the owner on Feb 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathproject.clj
37 lines (37 loc) · 1.5 KB
/
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
29
30
31
32
33
34
35
36
37
(defproject chaintool "0.10.2-SNAPSHOT"
:description "Hyperledger Fabric chaincode tool"
:url "https://github.com/hyperledger/fabric-chaintool"
:license {:name "Apache License"
:url "http://www.apache.org/licenses/LICENSE-2.0.txt"}
:min-lein-version "2.0.0"
:lein-release {:deploy-via :shell :shell ["true"]}
:javac-options ["-target" "1.8" "-source" "1.8"]
:jvm-opts ["-server"]
:java-source-paths ["src"]
:plugins [[lein-bin "0.3.5"]]
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/tools.cli "0.3.5"]
[org.clojure/algo.generic "0.1.2"]
[org.clojure/data.codec "0.1.0"]
[instaparse "1.4.2"]
[clojure-tools "1.1.3"]
[org.antlr/ST4 "4.0.8"]
[me.raynes/conch "0.8.0"]
[me.raynes/fs "1.4.6"]
[org.clojars.ghaskins/protobuf "3.0.2-2"]
[commons-io/commons-io "2.5"]
[org.tukaani/xz "1.5"]
[org.apache.commons/commons-compress "1.11"]
[com.github.jponge/lzma-java "1.3"]
[pandect "0.5.4"]
[doric "0.9.0"]
[circleci/clj-yaml "0.5.5"]
[slingshot "0.12.2"]
[clj-http "3.1.0"]
[cheshire "5.6.1"]]
:main ^:skip-aot chaintool.core
:bin {:name "chaintool"
:bin-path "target"
:bootclasspath true}
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})