forked from ReactiveX/RxJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
45 lines (39 loc) · 970 Bytes
/
build.gradle
File metadata and controls
45 lines (39 loc) · 970 Bytes
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
39
40
41
42
43
44
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'clojure'
apply plugin: 'eclipse'
apply plugin: 'idea'
aotCompile = true
warnOnReflection = true
repositories {
mavenCentral()
clojarsRepo()
}
dependencies {
compile project(':language-adaptors:rxjava-clojure')
compile project(':language-adaptors:rxjava-groovy')
compile 'clj-http:clj-http:0.6.4' // https://clojars.org/clj-http
provided 'junit:junit:4.10'
provided 'org.mockito:mockito-core:1.8.5'
groovy 'org.codehaus.groovy:groovy-all:1.8+'
}
/*
* Add Counterclockwise and include 'provided' dependencies
*/
eclipse {
project {
natures "ccw.nature"
}
classpath {
plusConfigurations += configurations.provided
downloadSources = true
downloadJavadoc = true
}
}
/*
* Adds clojuresque to the (build) classpath
*/
buildscript {
repositories { maven { url "http://clojars.org/repo" } }
dependencies { classpath "clojuresque:clojuresque:1.5.4" }
}