File tree 2 files changed +7
-167
lines changed
language-adaptors/rxjava-clojure
src/main/java/rx/lang/clojure
2 files changed +7
-167
lines changed Original file line number Diff line number Diff line change 1
- apply plugin : ' java'
2
1
apply plugin : ' clojure'
3
- apply plugin : ' eclipse'
4
- apply plugin : ' idea'
5
2
apply plugin : ' osgi'
6
3
7
4
dependencies {
8
5
compile project(' :rxjava-core' )
9
- provided ' org.clojure:clojure:1.4.+ '
6
+
10
7
provided ' junit:junit-dep:4.10'
11
8
provided ' org.mockito:mockito-core:1.8.5'
12
9
13
10
// clojure
14
- testCompile ' clj-http:clj-http:0.6.4' // https://clojars.org/clj-http
11
+ compile ' org.clojure:clojure:1.4.+'
12
+ compile ' clj-http:clj-http:0.6.4' // https://clojars.org/clj-http
15
13
}
16
14
17
15
/*
@@ -26,7 +24,6 @@ buildscript {
26
24
}
27
25
28
26
repositories {
29
- mavenCentral()
30
27
clojarsRepo()
31
28
}
32
29
@@ -37,45 +34,16 @@ eclipse {
37
34
project {
38
35
natures " ccw.nature"
39
36
}
40
- classpath {
41
- plusConfigurations + = configurations. provided
42
- downloadSources = true
43
- downloadJavadoc = true
44
- }
45
37
}
46
38
47
- idea {
48
- module {
49
- // include 'provided' dependencies on the classpath
50
- scopes. PROVIDED . plus + = configurations. provided
51
- }
39
+ tasks. clojureTest {
40
+ classpath = classpath + configurations. provided
52
41
}
53
42
54
-
55
- eclipse {
56
- classpath {
57
- // include 'provided' dependencies on the classpath
58
- plusConfigurations + = configurations. provided
59
-
60
- downloadSources = true
61
- downloadJavadoc = true
62
- }
43
+ tasks. compileExamplesClojure {
44
+ classpath = classpath + configurations. provided
63
45
}
64
46
65
- // include /src/examples folder
66
- sourceSets {
67
- examples
68
- }
69
-
70
- // make 'examples' use the same classpath
71
- configurations {
72
- examplesCompile. extendsFrom compile
73
- examplesRuntime. extendsFrom runtime
74
- }
75
-
76
- // include 'examples' in build task
77
- build. dependsOn examplesClasses
78
-
79
47
jar {
80
48
manifest {
81
49
name = ' rxjava-clojure'
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments