-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathproject.clj
More file actions
17 lines (17 loc) · 827 Bytes
/
project.clj
File metadata and controls
17 lines (17 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject clojure-workshop "0.1.0-SNAPSHOT"
:description
"Workshop material for learning clojure.
lein uberjar in solution branch will create the cat program."
:url "https://github.com/stoyle/clojure-workshop"
:license {:name "Creative Commons Attribution 4.0 International Public License"
:url "http://creativecommons.org/licenses/by/4.0/"}
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/tools.cli "0.4.2"]]
:main clojure-workshop.cat
:uberjar-name "cat.jar"
:profiles {:dev {:dependencies [[midje "1.9.8"]
[fipp "0.6.17"]]
:plugins [[lein-midje "3.2.1"]]
:resource-paths ["test-resources"]}
:uberjar {:aot [clojure-workshop.cat]}}
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"])