Browse Source

oauth2Login sample depends on security RC1

Fixes gh-4828
pull/4829/head
Joe Grandja 8 years ago
parent
commit
4039cd285e
  1. 8
      samples/boot/oauth2login/spring-security-samples-boot-oauth2login.gradle

8
samples/boot/oauth2login/spring-security-samples-boot-oauth2login.gradle

@ -3,16 +3,16 @@ apply plugin: 'io.spring.convention.spring-sample-boot'
ext['thymeleaf.version'] = '3.0.9.RELEASE' ext['thymeleaf.version'] = '3.0.9.RELEASE'
dependencies { dependencies {
compile project(':spring-security-config') compile 'org.springframework.security:spring-security-config:5.0.0.RC1'
compile project(':spring-security-oauth2-client') compile 'org.springframework.security:spring-security-oauth2-client:5.0.0.RC1'
compile project(':spring-security-oauth2-jose') compile 'org.springframework.security:spring-security-oauth2-jose:5.0.0.RC1'
compile 'org.springframework:spring-webflux' compile 'org.springframework:spring-webflux'
compile 'org.springframework.boot:spring-boot-starter-thymeleaf' compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
compile 'org.springframework.boot:spring-boot-starter-web' compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4' compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4'
compile 'io.projectreactor.ipc:reactor-netty' compile 'io.projectreactor.ipc:reactor-netty'
testCompile project(':spring-security-test') testCompile 'org.springframework.security:spring-security-test:5.0.0.RC1'
testCompile 'net.sourceforge.htmlunit:htmlunit' testCompile 'net.sourceforge.htmlunit:htmlunit'
testCompile 'org.springframework.boot:spring-boot-starter-test' testCompile 'org.springframework.boot:spring-boot-starter-test'
} }

Loading…
Cancel
Save