build.gradle 808 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. buildscript {
  2. repositories {
  3. mavenCentral()
  4. }
  5. dependencies {
  6. classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.5.21.RELEASE'
  7. }
  8. }
  9. plugins {
  10. id 'java'
  11. }
  12. apply plugin: 'org.springframework.boot'
  13. group = 'com.example'
  14. version = '0.0.1-SNAPSHOT'
  15. sourceCompatibility = '1.8'
  16. configurations {
  17. developmentOnly
  18. runtimeClasspath {
  19. extendsFrom developmentOnly
  20. }
  21. }
  22. repositories {
  23. mavenCentral()
  24. }
  25. dependencies {
  26. compile 'org.springframework.boot:spring-boot-starter-web'
  27. compile group: 'org.springframework.retry', name: 'spring-retry', version: '1.2.4.RELEASE'
  28. compile group: 'org.springframework', name: 'spring-aspects', version: '4.3.24.RELEASE'
  29. developmentOnly 'org.springframework.boot:spring-boot-devtools'
  30. testCompile 'org.springframework.boot:spring-boot-starter-test'
  31. }