-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
16 lines (16 loc) · 909 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject com.github.johnnyjayjay/connect-four "0.1.0"
: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/"}
:repositories [["spigotmc" "https://hub.spigotmc.org/nexus/content/repositories/snapshots/"]
["snapshots" "https://oss.sonatype.org/content/repositories/snapshots"]]
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/core.async "1.3.610"]
[org.clojure/core.match "1.0.0"]]
:source-paths ["src/clojure"]
:java-source-paths ["src/java"]
:profiles {:provided {:dependencies [[org.spigotmc/spigot-api "1.8.8-R0.1-SNAPSHOT" :scope "runtime"]]}}
:repl-options {:init-ns com.github.johnnyjayjay.connect_four.logic.game}
:aot :all
:global-vars {*warn-on-reflection* true})