Update Gradle configuration names
Closes gh-9540
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
apply plugin: 'io.spring.convention.spring-module'
|
||||
|
||||
dependencies {
|
||||
compile project(':spring-security-core')
|
||||
compile project(':spring-security-oauth2-core')
|
||||
compile project(':spring-security-web')
|
||||
compile springCoreDependency
|
||||
compile 'com.nimbusds:oauth2-oidc-sdk'
|
||||
api project(':spring-security-core')
|
||||
api project(':spring-security-oauth2-core')
|
||||
api project(':spring-security-web')
|
||||
api springCoreDependency
|
||||
api 'com.nimbusds:oauth2-oidc-sdk'
|
||||
|
||||
optional project(':spring-security-oauth2-jose')
|
||||
optional 'io.projectreactor:reactor-core'
|
||||
@@ -15,18 +15,18 @@ dependencies {
|
||||
optional 'org.springframework:spring-jdbc'
|
||||
optional 'org.springframework:spring-r2dbc'
|
||||
|
||||
testCompile project(path: ':spring-security-oauth2-core', configuration: 'tests')
|
||||
testCompile project(path: ':spring-security-oauth2-jose', configuration: 'tests')
|
||||
testCompile powerMock2Dependencies
|
||||
testCompile 'com.squareup.okhttp3:mockwebserver'
|
||||
testCompile 'io.projectreactor.netty:reactor-netty'
|
||||
testCompile 'io.projectreactor:reactor-test'
|
||||
testCompile 'io.projectreactor.tools:blockhound'
|
||||
testCompile 'org.skyscreamer:jsonassert'
|
||||
testCompile 'io.r2dbc:r2dbc-h2:0.8.4.RELEASE'
|
||||
testCompile 'io.r2dbc:r2dbc-spi-test:0.8.3.RELEASE'
|
||||
testImplementation project(path: ':spring-security-oauth2-core', configuration: 'tests')
|
||||
testImplementation project(path: ':spring-security-oauth2-jose', configuration: 'tests')
|
||||
testImplementation powerMock2Dependencies
|
||||
testImplementation 'com.squareup.okhttp3:mockwebserver'
|
||||
testImplementation 'io.projectreactor.netty:reactor-netty'
|
||||
testImplementation 'io.projectreactor:reactor-test'
|
||||
testImplementation 'io.projectreactor.tools:blockhound'
|
||||
testImplementation 'org.skyscreamer:jsonassert'
|
||||
testImplementation 'io.r2dbc:r2dbc-h2:0.8.4.RELEASE'
|
||||
testImplementation 'io.r2dbc:r2dbc-spi-test:0.8.3.RELEASE'
|
||||
|
||||
testRuntime 'org.hsqldb:hsqldb'
|
||||
testRuntimeOnly 'org.hsqldb:hsqldb'
|
||||
|
||||
provided 'javax.servlet:javax.servlet-api'
|
||||
}
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
apply plugin: 'io.spring.convention.spring-module'
|
||||
|
||||
dependencies {
|
||||
compile project(':spring-security-core')
|
||||
compile springCoreDependency
|
||||
compile 'org.springframework:spring-web'
|
||||
api project(':spring-security-core')
|
||||
api springCoreDependency
|
||||
api 'org.springframework:spring-web'
|
||||
|
||||
optional 'com.fasterxml.jackson.core:jackson-databind'
|
||||
optional 'com.nimbusds:oauth2-oidc-sdk'
|
||||
optional 'org.springframework:spring-webflux'
|
||||
|
||||
testCompile powerMock2Dependencies
|
||||
testImplementation powerMock2Dependencies
|
||||
}
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
apply plugin: 'io.spring.convention.spring-module'
|
||||
|
||||
dependencies {
|
||||
compile project(':spring-security-core')
|
||||
compile project(':spring-security-oauth2-core')
|
||||
compile springCoreDependency
|
||||
compile 'com.nimbusds:nimbus-jose-jwt'
|
||||
api project(':spring-security-core')
|
||||
api project(':spring-security-oauth2-core')
|
||||
api springCoreDependency
|
||||
api 'com.nimbusds:nimbus-jose-jwt'
|
||||
|
||||
optional 'io.projectreactor:reactor-core'
|
||||
optional 'org.springframework:spring-webflux'
|
||||
|
||||
testCompile powerMock2Dependencies
|
||||
testCompile 'com.squareup.okhttp3:mockwebserver'
|
||||
testCompile 'io.projectreactor.netty:reactor-netty'
|
||||
testCompile 'com.fasterxml.jackson.core:jackson-databind'
|
||||
testImplementation powerMock2Dependencies
|
||||
testImplementation 'com.squareup.okhttp3:mockwebserver'
|
||||
testImplementation 'io.projectreactor.netty:reactor-netty'
|
||||
testImplementation 'com.fasterxml.jackson.core:jackson-databind'
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
apply plugin: 'io.spring.convention.spring-module'
|
||||
|
||||
dependencies {
|
||||
compile project(':spring-security-core')
|
||||
compile project(':spring-security-oauth2-core')
|
||||
compile project(':spring-security-web')
|
||||
compile springCoreDependency
|
||||
api project(':spring-security-core')
|
||||
api project(':spring-security-oauth2-core')
|
||||
api project(':spring-security-web')
|
||||
api springCoreDependency
|
||||
|
||||
optional project(':spring-security-oauth2-jose')
|
||||
optional 'com.nimbusds:oauth2-oidc-sdk'
|
||||
@@ -13,9 +13,9 @@ dependencies {
|
||||
|
||||
provided 'javax.servlet:javax.servlet-api'
|
||||
|
||||
testCompile project(path: ':spring-security-oauth2-jose', configuration: 'tests')
|
||||
testCompile 'com.squareup.okhttp3:mockwebserver'
|
||||
testCompile 'com.fasterxml.jackson.core:jackson-databind'
|
||||
testCompile 'io.projectreactor.netty:reactor-netty'
|
||||
testCompile 'io.projectreactor:reactor-test'
|
||||
testImplementation project(path: ':spring-security-oauth2-jose', configuration: 'tests')
|
||||
testImplementation 'com.squareup.okhttp3:mockwebserver'
|
||||
testImplementation 'com.fasterxml.jackson.core:jackson-databind'
|
||||
testImplementation 'io.projectreactor.netty:reactor-netty'
|
||||
testImplementation 'io.projectreactor:reactor-test'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user