1
0
mirror of synced 2026-08-04 01:07:02 +00:00
Files
spring-security/test/spring-security-test.gradle
T

22 lines
697 B
Groovy
Raw Permalink Normal View History

2017-03-28 15:45:30 -05:00
apply plugin: 'io.spring.convention.spring-module'
dependencies {
compile project(':spring-security-core')
compile project(':spring-security-web')
compile 'org.springframework:spring-core'
compile 'org.springframework:spring-test'
optional project(':spring-security-config')
2017-05-19 14:40:40 -05:00
optional 'io.projectreactor:reactor-core'
2017-07-13 20:47:09 -05:00
optional 'org.springframework:spring-webflux'
2017-03-28 15:45:30 -05:00
provided 'javax.servlet:javax.servlet-api'
2017-07-13 20:47:09 -05:00
testCompile 'com.fasterxml.jackson.core:jackson-databind'
2017-08-17 11:15:28 -05:00
testCompile 'io.projectreactor:reactor-test'
2017-07-13 20:47:09 -05:00
testCompile 'org.skyscreamer:jsonassert'
2017-03-28 15:45:30 -05:00
testCompile 'org.springframework:spring-webmvc'
testCompile 'org.springframework:spring-tx'
2017-10-09 13:19:21 -05:00
testCompile powerMock2Dependencies
2017-03-28 15:45:30 -05:00
}