@@ -532,14 +532,17 @@ project('spring-webmvc-tiles3') {
532
532
compile(" javax.servlet:jstl:1.1.2" , provided)
533
533
compile(" javax.servlet.jsp:jsp-api:2.1" , provided)
534
534
compile(" org.apache.tiles:tiles-request-api:1.0.1" , optional)
535
- compile(" org.apache.tiles:tiles-request-servlet-wildcard:1.0.1" , optional)
535
+ compile(" org.apache.tiles:tiles-request-servlet-wildcard:1.0.1" ) { dep ->
536
+ optional dep
537
+ exclude group : ' org.springframework' , module : ' spring-web'
538
+ }
536
539
compile(" org.apache.tiles:tiles-api:3.0.1" , optional)
537
540
compile(" org.apache.tiles:tiles-core:3.0.1" , optional)
538
541
compile(" org.apache.tiles:tiles-servlet:3.0.1" , optional)
539
542
compile(" org.apache.tiles:tiles-jsp:3.0.1" , optional)
540
543
compile(" org.apache.tiles:tiles-el:3.0.1" , optional)
541
544
compile(" org.apache.tomcat:tomcat-servlet-api:7.0.32" , provided) // servlet-api 3.0
542
- testCompile project(" :spring-web" ). sourceSets* . output // mock request & response
545
+ compile project(" :spring-web" ). sourceSets* . output // mock request & response
543
546
}
544
547
}
545
548
@@ -593,6 +596,7 @@ project('spring-test-mvc') {
593
596
description = ' Spring Test MVC Framework'
594
597
ext. mergeIntoProject = project(' :spring-test' )
595
598
apply from : " ${ gradleScriptDir} /merge-artifacts.gradle"
599
+ apply from : " ide.gradle"
596
600
dependencies {
597
601
compile project(" :spring-context" )
598
602
compile project(" :spring-webmvc" )
0 commit comments