-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
27 lines (26 loc) · 1.46 KB
/
project.clj
File metadata and controls
27 lines (26 loc) · 1.46 KB
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
(defproject nz.co.arachnid.musiclib/musiclib "0.1.0-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/"}
:dependencies [[org.clojure/clojure "1.12.1"]
[clj-commons/fs "1.5.0"]
[org.clojure/tools.cli "0.4.2"]
[com.mpatric/mp3agic "0.9.1"]
[clojure-term-colors "0.1.0"]
[org.clojure/core.async "0.4.490"]]
:main ^:skip-aot nz.co.arachnid.musiclib.core
:target-path "target/%s"
:profiles {:dev {:source-paths ["dev"]
:dependencies [[org.clojure/tools.namespace "0.2.10"]
[org.clojure/java.classpath "0.3.0"]
[org.openjfx/javafx-fxml "12.0.1"]
[org.openjfx/javafx-controls "12.0.1"]
[org.openjfx/javafx-swing "12.0.1"]
[org.openjfx/javafx-base "12.0.1"]
[org.openjfx/javafx-web "12.0.1"]
[com.bhauman/rebel-readline "0.1.4"]]
:plugins [[lein-ancient "0.6.15"]
[lein-cljfmt "0.6.4"]]
:repl-options {:init-ns user}}
:uberjar {:aot :all}})