spring-security-samples-javaconfig-hellowebflux.gradle 599 B

1234567891011121314151617
  1. apply plugin: 'io.spring.convention.spring-sample'
  2. dependencies {
  3. compile project(':spring-security-core')
  4. compile project(':spring-security-config')
  5. compile project(':spring-security-web')
  6. compile 'com.fasterxml.jackson.core:jackson-databind'
  7. compile 'io.projectreactor.ipc:reactor-netty'
  8. compile 'org.springframework:spring-context'
  9. compile 'org.springframework:spring-webflux'
  10. compile slf4jDependencies
  11. testCompile project(':spring-security-test')
  12. testCompile 'io.projectreactor:reactor-test'
  13. testCompile 'org.skyscreamer:jsonassert'
  14. testCompile 'org.springframework:spring-test'
  15. }