forked from onyx-platform/learn-onyx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
15 lines (15 loc) · 883 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(defproject workshop "0.12.2"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
^{:voom {:repo "[email protected]:onyx-platform/onyx.git" :branch "master"}}
[org.onyxplatform/onyx "0.12.2"]
[org.slf4j/slf4j-api "1.7.12"]
[org.slf4j/slf4j-nop "1.7.12"]]
:profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.10"]
[pjstadig/humane-test-output "0.7.0"]]
:plugins [[lein-update-dependency "0.1.2"]
[lein-set-version "0.4.1"]]
:source-paths ["env/dev" "src"]
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]}})