Skip to content

Commit 384eecc

Browse files
committed
Remove provided configuration for test dependencies
1 parent 2eec079 commit 384eecc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

language-adaptors/rxjava-scala/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@ dependencies {
4545

4646
compile project(':rxjava-core')
4747

48-
provided 'junit:junit-dep:4.10'
49-
provided 'org.mockito:mockito-core:1.8.5'
48+
testCompile 'junit:junit-dep:4.10'
49+
testCompile 'org.mockito:mockito-core:1.8.5'
5050
testCompile 'org.scalatest:scalatest_2.10:1.9.1'
5151
}
5252

5353
tasks.compileScala {
54-
classpath = classpath + (configurations.compile + configurations.provided)
54+
classpath = classpath + configurations.compile
5555
}
5656

5757
tasks.compileExamplesScala {
58-
classpath = classpath + files(compileScala.destinationDir) + (configurations.compile + configurations.provided)
58+
classpath = classpath + files(compileScala.destinationDir) + (configurations.compile + configurations.testCompile)
5959
}
6060

6161
// Add RxJava core to Scaladoc input:

0 commit comments

Comments
 (0)