forked from Clojure-Developer/Clojure-Developer-2023-04
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
26 lines (16 loc) · 711 Bytes
/
Copy pathproject.clj
File metadata and controls
26 lines (16 loc) · 711 Bytes
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
(defproject otus-02 "0.1.1-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:uberjar-name "my-app.jar"
:jvm-opts ["-Xmx1g"]
:main ^:skip-aot otus-02.core
:resource-paths ["resources"]
:dependencies [[org.clojure/clojure "1.11.1"]]
:repl-options {:init-ns otus-02.core}
:profiles {:uberjar {:aot :all}
:dev {:source-paths ["dev/src"]
:resource-paths ["dev/resources"]
:dependencies [[djblue/portal "0.30.0"]]}}
:aliases {"help" ["run" "help"]})