-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
21 lines (19 loc) · 814 Bytes
/
project.clj
File metadata and controls
21 lines (19 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject ocean "0.1.0-SNAPSHOT"
:description ""
:url ""
:license {:name ""
:url ""}
:dependencies [[aero "1.0.3"]
[org.clojure/clojure "1.8.0"]
[org.clojure/tools.cli "0.3.5"]
[org.onyxplatform/onyx "0.12.4"]
[org.onyxplatform/lib-onyx "0.12.0.0"]]
:source-paths ["src"]
:profiles {:dev {:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]
:global-vars {*assert* true}
:dependencies [[org.clojure/tools.namespace "0.2.11"]
[lein-project-version "0.1.0"]]}
:uberjar {:aot [lib-onyx.media-driver
ocean.core]
:uberjar-name "peer.jar"
:global-vars {*assert* false}}})