-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
20 lines (20 loc) · 905 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject clj-audiotagger "0.2.0"
:description "Useful CLI audio tagger utility/library wrap on top of jaudiotagger and claudio library"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:profiles {:dev {:dependencies [[lein-bin "0.3.4"]]}
:uberjar {:aot :all}}
:source-paths ["src/clj"]
:java-source-paths ["src/java"]
:dependencies [[org.clojure/clojure "1.8.0"]
[net.jthink/jaudiotagger "2.2.3"]
[claudio "0.1.3"]
[org.clojure/tools.cli "0.3.5"]
[me.raynes/fs "1.4.6"]]
:repositories {"jaudiotagger-repository" "https://dl.bintray.com/ijabz/maven"}
:bin {:name "clj-audiotagger"
:bin-path "~/bin"
:bootclasspath true}
:plugins [[lein-bin "0.3.4"]
[lein-cljfmt "0.5.3"]]
:main com.agilecreativity.clj_audiotagger.main)