1
0
mirror of synced 2026-08-04 17:27:13 +00:00
Files
spring-security/messaging/spring-security-messaging.gradle
T

23 lines
741 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 'org.springframework:spring-beans'
compile 'org.springframework:spring-context'
compile 'org.springframework:spring-core'
compile 'org.springframework:spring-expression'
compile 'org.springframework:spring-messaging'
optional project(':spring-security-web')
optional 'org.springframework:spring-websocket'
optional 'io.projectreactor:reactor-core'
2017-03-28 15:45:30 -05:00
optional 'javax.servlet:javax.servlet-api'
testCompile project(path: ':spring-security-core', configuration: 'tests')
testCompile 'commons-codec:commons-codec'
2017-10-09 13:19:21 -05:00
testCompile powerMock2Dependencies
2017-03-28 15:45:30 -05:00
testCompile slf4jDependencies
testRuntime 'org.hsqldb:hsqldb'
}