build.gradle 721 B

123456789101112131415161718192021222324252627282930313233
  1. buildscript {
  2. ext {
  3. springBootVersion = '2.0.4.RELEASE'
  4. }
  5. repositories {
  6. mavenCentral()
  7. }
  8. dependencies {
  9. classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
  10. }
  11. }
  12. apply plugin: 'java'
  13. apply plugin: 'eclipse'
  14. apply plugin: 'org.springframework.boot'
  15. apply plugin: 'io.spring.dependency-management'
  16. group = 'usuario-api'
  17. version = '0.0.1-SNAPSHOT'
  18. sourceCompatibility = 1.8
  19. repositories {
  20. mavenCentral()
  21. }
  22. dependencies {
  23. compile('org.springframework.boot:spring-boot-starter')
  24. compile('org.springframework.boot:spring-boot-starter-data-jpa')
  25. compile("org.springframework.boot:spring-boot-starter-web")
  26. testCompile('org.springframework.boot:spring-boot-starter-test')
  27. }