@@ -184,7 +184,11 @@ configure(allprojects) { project ->
184
184
testCompile(" org.mockito:mockito-core:2.6.1" ) {
185
185
exclude group :' org.hamcrest' , module :' hamcrest-core'
186
186
}
187
- testCompile(" com.nhaarman:mockito-kotlin:1.5.0" )
187
+ testCompile(" com.nhaarman:mockito-kotlin:1.5.0" ) {
188
+ exclude module :' kotlin-stdlib'
189
+ exclude module :' kotlin-reflect'
190
+ exclude module :' mockito-core'
191
+ }
188
192
testCompile(" org.hamcrest:hamcrest-all:${ hamcrestVersion} " )
189
193
testRuntime(" org.apache.logging.log4j:log4j-core:${ log4jVersion} " )
190
194
}
@@ -378,7 +382,7 @@ project("spring-core") {
378
382
optional(" net.sf.jopt-simple:jopt-simple:5.0.3" )
379
383
optional(" org.aspectj:aspectjweaver:${ aspectjVersion} " )
380
384
optional(" org.jetbrains.kotlin:kotlin-reflect:${ kotlinVersion} " )
381
- optional(" org.jetbrains.kotlin:kotlin-stdlib-jre8 :${ kotlinVersion} " )
385
+ optional(" org.jetbrains.kotlin:kotlin-stdlib:${ kotlinVersion} " )
382
386
optional(" org.reactivestreams:reactive-streams" )
383
387
optional(" io.projectreactor:reactor-core" )
384
388
optional(" io.reactivex:rxjava:${ rxjavaVersion} " )
@@ -416,7 +420,7 @@ project("spring-beans") {
416
420
compile(files(project(" :spring-core" ). cglibRepackJar))
417
421
optional(" javax.inject:javax.inject:1" )
418
422
optional(" org.jetbrains.kotlin:kotlin-reflect:${ kotlinVersion} " )
419
- optional(" org.jetbrains.kotlin:kotlin-stdlib-jre8 :${ kotlinVersion} " )
423
+ optional(" org.jetbrains.kotlin:kotlin-stdlib:${ kotlinVersion} " )
420
424
optional(" org.yaml:snakeyaml:${ snakeyamlVersion} " )
421
425
testCompile(" org.apache.tomcat.embed:tomcat-embed-core:${ tomcatVersion} " )
422
426
}
@@ -511,7 +515,7 @@ project("spring-context") {
511
515
optional(" org.aspectj:aspectjweaver:${ aspectjVersion} " )
512
516
optional(" org.codehaus.groovy:groovy-all:${ groovyVersion} " )
513
517
optional(" org.beanshell:bsh:2.0b5" )
514
- optional(" org.jetbrains.kotlin:kotlin-stdlib-jre8 :${ kotlinVersion} " )
518
+ optional(" org.jetbrains.kotlin:kotlin-stdlib:${ kotlinVersion} " )
515
519
testCompile(" org.apache.commons:commons-pool2:2.4.2" )
516
520
testCompile(" org.slf4j:slf4j-api:${ slf4jVersion} " )
517
521
testCompile(" javax.inject:javax.inject-tck:1" )
@@ -589,7 +593,7 @@ project("spring-messaging") {
589
593
testCompile(" io.netty:netty-all" )
590
594
testCompile(" org.xmlunit:xmlunit-matchers:${ xmlunitVersion} " )
591
595
testCompile(" org.jetbrains.kotlin:kotlin-reflect:${ kotlinVersion} " )
592
- testCompile(" org.jetbrains.kotlin:kotlin-stdlib-jre8 :${ kotlinVersion} " )
596
+ testCompile(" org.jetbrains.kotlin:kotlin-stdlib:${ kotlinVersion} " )
593
597
testRuntime(" com.sun.xml.bind:jaxb-core:${ jaxbVersion} " )
594
598
testRuntime(" com.sun.xml.bind:jaxb-impl:${ jaxbVersion} " )
595
599
}
@@ -646,7 +650,7 @@ project("spring-jdbc") {
646
650
optional(" org.apache.derby:derby:10.13.1.1" )
647
651
optional(" org.apache.derby:derbyclient:10.13.1.1" )
648
652
optional(" org.jetbrains.kotlin:kotlin-reflect:${ kotlinVersion} " )
649
- optional(" org.jetbrains.kotlin:kotlin-stdlib-jre8 :${ kotlinVersion} " )
653
+ optional(" org.jetbrains.kotlin:kotlin-stdlib:${ kotlinVersion} " )
650
654
}
651
655
}
652
656
@@ -748,7 +752,7 @@ project("spring-web") {
748
752
optional(" javax.xml.bind:jaxb-api:${ jaxbVersion} " )
749
753
optional(" javax.xml.ws:jaxws-api:${ jaxwsVersion} " )
750
754
optional(" javax.mail:javax.mail-api:${ javamailVersion} " )
751
- optional(" org.jetbrains.kotlin:kotlin-stdlib-jre8 :${ kotlinVersion} " )
755
+ optional(" org.jetbrains.kotlin:kotlin-stdlib:${ kotlinVersion} " )
752
756
testCompile(" io.projectreactor.addons:reactor-test" )
753
757
testCompile(" org.apache.taglibs:taglibs-standard-jstlel:1.2.1" ) {
754
758
exclude group : " org.apache.taglibs" , module : " taglibs-standard-spec"
@@ -806,7 +810,7 @@ project("spring-webflux") {
806
810
exclude group : " org.jboss.spec.javax.websocket" , module : " jboss-websocket-api_1.1_spec"
807
811
}
808
812
optional(" org.jetbrains.kotlin:kotlin-reflect:${ kotlinVersion} " )
809
- optional(" org.jetbrains.kotlin:kotlin-stdlib-jre8 :${ kotlinVersion} " )
813
+ optional(" org.jetbrains.kotlin:kotlin-stdlib:${ kotlinVersion} " )
810
814
testCompile(" io.projectreactor.addons:reactor-test" )
811
815
testCompile(" javax.validation:validation-api:${ beanvalVersion} " )
812
816
testCompile(" org.hibernate:hibernate-validator:${ hibvalVersion} " )
0 commit comments