spring-security-samples-javaconfig-hellowebflux-method.gradle 572 B

12345678910111213141516
  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. testCompile project(':spring-security-test')
  11. testCompile 'io.projectreactor:reactor-test'
  12. testCompile 'org.skyscreamer:jsonassert'
  13. testCompile 'org.springframework:spring-test'
  14. }