-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.clj
33 lines (32 loc) · 1.53 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
(defproject org.onyxplatform/onyx-spec "0.14.1.1"
:description "Clojure specs for Onyx core."
:url "https://github.com/onyx-platform/onyx-spec"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:repositories {"snapshots" {:url "https://clojars.org/repo"
:username :env
:password :env
:sign-releases false}
"releases" {:url "https://clojars.org/repo"
:username :env
:password :env
:sign-releases false}}
:dependencies [[org.clojure/clojure "1.9.0-alpha20"]
[org.clojure/clojurescript "1.10.238"]
[org.onyxplatform/onyx "0.14.1"]
[org.clojure/test.check "0.9.0"]]
:clean-targets ^{:protect false} [:target-path :compile-path "resources/public/js"]
:doo {:build "test"
:alias {:default [:chrome-headless]}}
:cljsbuild {:builds
[{:id "test"
:source-paths ["test"]
:compiler {:output-to "resources/public/js/compiled_test/onyx_sim_test.js"
:output-dir "resources/public/js/compiled_test/out"
:main onyx.spec.test-runner
:optimizations :none}}]}
:plugins [[codox "0.8.8"]
[lein-set-version "0.4.1"]
[lein-update-dependency "0.1.2"]
[lein-pprint "1.1.1"]
[lein-doo "0.1.8"]])