spring-security-samples-boot-oauth2-integrated-authorizationserver.gradle 473 B

123456789101112
  1. apply plugin: 'io.spring.convention.spring-sample-boot'
  2. dependencies {
  3. compile 'org.springframework.boot:spring-boot-starter-web'
  4. compile 'org.springframework.boot:spring-boot-starter-security'
  5. compile 'org.springframework.boot:spring-boot-starter-jdbc'
  6. compile project(':spring-security-oauth2-authorization-server')
  7. runtimeOnly 'com.h2database:h2'
  8. testCompile 'org.springframework.boot:spring-boot-starter-test'
  9. testCompile 'net.sourceforge.htmlunit:htmlunit'
  10. }