File tree Expand file tree Collapse file tree 1 file changed +10
-26
lines changed
language-adaptors/rxjava-clojure Expand file tree Collapse file tree 1 file changed +10
-26
lines changed Original file line number Diff line number Diff line change
1
+ buildscript {
2
+ repositories { maven { url " http://clojars.org/repo" } }
3
+ dependencies { classpath " clojuresque:clojuresque:1.5.8" }
4
+ }
5
+
1
6
apply plugin : ' clojure'
2
7
apply plugin : ' osgi'
3
8
9
+ repositories {
10
+ clojarsRepo()
11
+ }
12
+
4
13
dependencies {
5
14
compile project(' :rxjava-core' )
6
-
7
- // clojure
8
15
compile ' org.clojure:clojure:1.4.+'
9
-
10
- // this should be 'compile' for the 'examples' module ... can't figure that out right now so making 'provided'
11
- provided ' clj-http:clj-http:0.6.4' // https://clojars.org/clj-http
16
+ compile ' clj-http:clj-http:0.6.4' // https://clojars.org/clj-http
12
17
}
13
18
14
- tasks. compileExamplesClojure. classpath = files(tasks. compileClojure. destinationDir) + tasks. compileClojure. classpath
15
-
16
- /*
17
- * Clojure
18
- */
19
19
aotCompile = true
20
20
warnOnReflection = false
21
21
22
- buildscript {
23
- repositories { maven { url " http://clojars.org/repo" } }
24
- dependencies { classpath " clojuresque:clojuresque:1.5.8" }
25
- }
26
-
27
- repositories {
28
- clojarsRepo()
29
- }
30
-
31
- /*
32
- * Add Counterclockwise and include 'provided' dependencies
33
- */
34
22
eclipse {
35
23
project {
36
24
natures " ccw.nature"
37
25
}
38
26
}
39
27
40
- tasks. clojureTest {
41
- classpath = classpath + configurations. provided
42
- }
43
-
44
28
jar {
45
29
manifest {
46
30
name = ' rxjava-clojure'
You can’t perform that action at this time.
0 commit comments