-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
18 lines (18 loc) · 744 Bytes
/
project.clj
File metadata and controls
18 lines (18 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject org.red/ares "0.3.1-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/tools.logging "0.4.0"]
[ch.qos.logback/logback-classic "1.2.3"]
[clj-http "3.8.0"]
[cheshire "5.8.0"]
[org.clojure/core.async "0.4.474"]
[mount "0.1.12"]
[org.clojure/tools.cli "0.3.6"]
[overtone/at-at "1.2.0"]]
:main ^:skip-aot org.red.ares.core
:uberjar-name "ares-standalone.jar"
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})