-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
38 lines (36 loc) · 1.33 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
31
32
33
34
35
36
37
38
(defproject org.arachne-framework/hello-module "0.1.0"
:description "A minimal sample Arachne module"
:dependencies [
;; Scope "provided" means Clojure itself will be required, but not as a transitive dependency
[org.clojure/clojure "1.9.0-alpha12" :scope "provided"]
[org.arachne-framework/arachne-core "0.1.0-master-0057-ad6d720"]]
;; Use Arachne's development builds
:repositories [["arachne-dev" "http://maven.arachne-framework.org/artifactory/arachne-dev"]]
;; Dev profile for non-transitive dependencies
:profiles
{:dev
{:dependencies
[
;; Include both DataScript and Datomic so we can test against both; we
;; don't know which our users will choose!
[datascript "0.15.2" :scope "test"]
[com.datomic/datomic-free
"0.9.5350"
:exclusions
[org.slf4j/slf4j-log4j12
org.slf4j/slf4j-nop
org.slf4j/slf4j-api
org.slf4j/log4j-over-slf4j]
:scope
"test"]
;; Logging stuff for development
[ch.qos.logback/logback-classic "1.1.3" :scope "test"]
[org.slf4j/jul-to-slf4j
"1.7.12"
:exclusions
[org.slf4j/slf4j-api]
:scope
"test"]
[org.slf4j/jcl-over-slf4j "1.7.12" :scope "test"]
[org.slf4j/log4j-over-slf4j "1.7.12" :scope "test"]
[clj-http "2.2.0" :scope "test"]]}})