forked from thehammer/jukebox2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
30 lines (30 loc) · 1.15 KB
/
project.clj
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
28
29
30
(defproject
jukebox "1.0.0-SNAPSHOT"
:description "Jukebox"
:repositories {"local" ~(str (.toURI (java.io.File. "maven_repository")))}
:dependencies [[org.clojure/clojure "1.2.0"]
[org.clojure/clojure-contrib "1.2.0"]
[org.jaudiotagger/jaudiotagger "2.0.1"]
[org.clojars.ghoseb/cron4j "2.2.1"]
[fleetdb "0.3.1"]
[corroborate "0.2.0"]
[compojure "0.6.5"]
[ring-json-params "0.1.3"]
[ring-cors "0.0.2-SNAPSHOT"]
[clj-json "0.4.3"]
[org.mindrot/jbcrypt "0.3m"]
[jaad "0.8.3"]
[jl "1.0.1"]
[jogg "0.0.7"]
[jorbis "0.0.15"]
[mp3spi "1.9.5"]
[tritonus_share "0.3.6"]
[vorbisspi "1.0.3"]
[fs "1.1.2"]]
:dev-dependencies [[lein-ring "0.4.5"]
[lein-javac "1.2.1-SNAPSHOT"]
[speclj "1.5.2"]
[speclj-growl "1.0.0-SNAPSHOT"]]
:main jukebox-web.core
:ring {:handler jukebox-web.core/app}
:test-path "spec/")