Skip to content

Commit f014e8f

Browse files
committed
Provide JDBC implementation of OAuth2AuthorizationService
Add new JDBC implementation of the OAuth2AuthorizationService Closes gh-245
1 parent f3cb8f7 commit f014e8f

File tree

5 files changed

+989
-0
lines changed

5 files changed

+989
-0
lines changed

gradle/dependency-management.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,6 @@ dependencyManagement {
3232
dependency "com.squareup.okhttp3:mockwebserver:3.14.9"
3333
dependency "com.squareup.okhttp3:okhttp:3.14.9"
3434
dependency "com.jayway.jsonpath:json-path:2.4.0"
35+
dependency "org.hsqldb:hsqldb:2.5.+"
3536
}
3637
}

oauth2-authorization-server/spring-security-oauth2-authorization-server.gradle

+4
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,17 @@ dependencies {
1010
compile 'com.nimbusds:nimbus-jose-jwt'
1111
compile 'com.fasterxml.jackson.core:jackson-databind'
1212

13+
optional 'org.springframework:spring-jdbc'
14+
1315
testCompile 'org.springframework.security:spring-security-test'
1416
testCompile 'org.springframework:spring-webmvc'
1517
testCompile 'junit:junit'
1618
testCompile 'org.assertj:assertj-core'
1719
testCompile 'org.mockito:mockito-core'
1820
testCompile 'com.jayway.jsonpath:json-path'
1921

22+
testRuntime 'org.hsqldb:hsqldb'
23+
2024
provided 'javax.servlet:javax.servlet-api'
2125
}
2226

0 commit comments

Comments
 (0)