apply plugin: 'io.spring.convention.spring-module'

dependencies {
	management platform(project(":spring-security-dependencies"))
	api project(':spring-security-core')
	api project(':spring-security-oauth2-core')
	api 'org.springframework:spring-core'
	api 'com.nimbusds:nimbus-jose-jwt'

	optional 'io.projectreactor:reactor-core'
	optional 'org.springframework:spring-webflux'

	testImplementation 'com.squareup.okhttp3:mockwebserver'
	testImplementation 'io.projectreactor.netty:reactor-netty'
	testImplementation 'com.fasterxml.jackson.core:jackson-databind'
	testImplementation "org.assertj:assertj-core"
	testImplementation "org.junit.jupiter:junit-jupiter-api"
	testImplementation "org.junit.jupiter:junit-jupiter-params"
	testImplementation "org.junit.jupiter:junit-jupiter-engine"
	testImplementation "org.mockito:mockito-core"
	testImplementation "org.mockito:mockito-junit-jupiter"
	testImplementation "org.springframework:spring-test"
}