Selaa lähdekoodia

oauth2Login sample depends on security RC1

Fixes gh-4828
Joe Grandja 7 vuotta sitten
vanhempi
commit
4039cd285e

+ 4 - 4
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'
 
 dependencies {
-	compile project(':spring-security-config')
-	compile project(':spring-security-oauth2-client')
-	compile project(':spring-security-oauth2-jose')
+	compile 'org.springframework.security:spring-security-config:5.0.0.RC1'
+	compile 'org.springframework.security:spring-security-oauth2-client:5.0.0.RC1'
+	compile 'org.springframework.security:spring-security-oauth2-jose:5.0.0.RC1'
 	compile 'org.springframework:spring-webflux'
 	compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
 	compile 'org.springframework.boot:spring-boot-starter-web'
 	compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4'
 	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 'org.springframework.boot:spring-boot-starter-test'
 }