build.gradle 655 B

1234567891011121314151617181920212223242526272829
  1. buildscript {
  2. dependencies {
  3. classpath 'io.spring.gradle:spring-build-conventions:0.0.31.RELEASE'
  4. classpath "org.springframework.boot:spring-boot-gradle-plugin:latest.release"
  5. }
  6. repositories {
  7. maven { url 'https://repo.spring.io/plugins-snapshot' }
  8. maven { url 'https://plugins.gradle.org/m2/' }
  9. }
  10. }
  11. apply plugin: 'io.spring.convention.root'
  12. group = 'org.springframework.security.experimental'
  13. description = 'Spring Authorization Server'
  14. version = '0.0.1-SNAPSHOT'
  15. repositories {
  16. mavenCentral()
  17. }
  18. dependencyManagementExport.projects = subprojects
  19. subprojects {
  20. plugins.withType(JavaPlugin) {
  21. project.sourceCompatibility = '1.8'
  22. }
  23. }