File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ dependencies {
7
7
// clojure
8
8
compile ' org.clojure:clojure:1.4.+'
9
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
10
+ // this should be 'compile' for the 'examples' module
11
+ testCompile ' clj-http:clj-http:0.6.4' // https://clojars.org/clj-http
12
12
}
13
13
14
- tasks. compileExamplesClojure. classpath = files(tasks. compileClojure. destinationDir) + tasks. compileClojure. classpath
14
+ tasks. compileExamplesClojure. classpath = files(tasks. compileClojure. destinationDir) + tasks. compileClojure. classpath + configurations . testCompile
15
15
16
16
/*
17
17
* Clojure
@@ -29,7 +29,7 @@ repositories {
29
29
}
30
30
31
31
/*
32
- * Add Counterclockwise and include 'provided ' dependencies
32
+ * Add Counterclockwise and include 'testCompile ' dependencies
33
33
*/
34
34
eclipse {
35
35
project {
@@ -38,7 +38,7 @@ eclipse {
38
38
}
39
39
40
40
tasks. clojureTest {
41
- classpath = classpath + configurations. provided
41
+ classpath = classpath + configurations. testCompile
42
42
}
43
43
44
44
jar {
You can’t perform that action at this time.
0 commit comments