spring-authorization-server-samples-helloworld.gradle 314 B

123456789101112
  1. apply plugin: 'io.spring.convention.spring-sample-boot'
  2. dependencies {
  3. implementation 'org.springframework.boot:spring-boot-starter'
  4. testImplementation('org.springframework.boot:spring-boot-starter-test') {
  5. exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
  6. }
  7. }
  8. test {
  9. useJUnitPlatform()
  10. }