-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
15 lines (15 loc) · 775 Bytes
/
project.clj
File metadata and controls
15 lines (15 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(defproject json-diff "0.3.0"
:description "A console program to produce colorized structural diff of two JSON files"
:url "https://github.com/reflechant/json-diff"
: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.1"]
[org.clojure/data.json "1.0.0"]
[org.clojure/core.async "1.3.610"]
[org.clojure/tools.cli "1.0.194"]
[lambdaisland/deep-diff2 "2.0.108"]
[juji/editscript "0.4.6"]]
:main ^:skip-aot json-diff.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]}})