-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
20 lines (20 loc) · 1 KB
/
Copy pathproject.clj
File metadata and controls
20 lines (20 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject cljukebox "0.1.0"
:description "A clojure based self-hosted music bot for Discord"
:url "https://github.com/danmason/cljukebox"
: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.10.1"]
[org.clojure/tools.logging "1.2.3"]
[com.fasterxml.jackson.core/jackson-core "2.12.5"]
[com.discord4j/discord4j-core "3.2.0"]
[com.discord4j/discord4j-rest "3.2.0"]
[com.discord4j/discord-json "1.6.10" ]
[com.sedmelluq/lavaplayer "1.3.77" ]
[ch.qos.logback/logback-classic "1.2.3"]
[medley "1.3.0"]]
:repl-options {:init-ns cljukebox.core}
:repositories [["m2-dv8tion" "https://m2.dv8tion.net/releases"]]
:java-source-paths ["java-src"]
:jvm-opts ["-Dlogback.configurationFile=resources/logback.xml"]
:uberjar-name "cljukebox.jar"
:main cljukebox.core)