build.gradle 927 B

12345678910111213141516171819202122232425262728293031323334
  1. buildscript {
  2. ext {
  3. springBootVersion = '2.0.0.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: 'org.springframework.boot'
  14. apply plugin: 'io.spring.dependency-management'
  15. group = 'com.uas.mobile'
  16. version = '0.0.1-SNAPSHOT'
  17. sourceCompatibility = 1.8
  18. repositories {
  19. jcenter()
  20. mavenCentral()
  21. }
  22. dependencies {
  23. compile project(':fitness-barn-service')
  24. compile('org.springframework.boot:spring-boot-starter-actuator')
  25. compile('org.springframework.boot:spring-boot-starter-data-jpa')
  26. compile('org.springframework.boot:spring-boot-starter-web')
  27. compile('org.springframework.boot:spring-boot-starter-logging')
  28. runtime('mysql:mysql-connector-java')
  29. testCompile('org.springframework.boot:spring-boot-starter-test')
  30. }