-
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) · 777 Bytes
/
project.clj
File metadata and controls
15 lines (15 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(defproject ufabc-registration-monitor "0.1.0-SNAPSHOT"
:description "App for monitoring UFABC registration"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.11.1"]
[clj-http "3.12.3"]
[cheshire "5.11.0"]
[org.julienxx/clj-slack "0.6.3"]
[nubank/matcher-combinators "3.5.1"]]
:main ^:skip-aot ufabc-registration-monitor.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}
:kaocha {:dependencies [[lambdaisland/kaocha "0.0-521"]]}}
:aliases {"kaocha" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner"]
"test" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner"]})