build.gradle 914 B

1234567891011121314151617181920212223242526272829303132
  1. apply from: "$rootDir/gradle/service-base.gradle"
  2. apply from: "$rootDir/gradle/publish.gradle"
  3. apply from: "$rootDir/gradle/docker.gradle"
  4. group 'com.uas.cloud.mall'
  5. version '0.1.0'
  6. ext {
  7. baseName = 'mall-home-app'
  8. artifactId = 'mall-home-app'
  9. }
  10. jar {
  11. baseName = "${baseName}"
  12. version = '0.1.0'
  13. }
  14. dependencies {
  15. // compile("org.springframework.boot:spring-boot-starter-web")
  16. // compile("org.thymeleaf:thymeleaf-spring4")
  17. compile("org.springframework.boot:spring-boot-starter-thymeleaf")
  18. compile("org.springframework.cloud:spring-cloud-starter-feign")
  19. compile("org.springframework.cloud:spring-cloud-starter-ribbon")
  20. compile("org.springframework.cloud:spring-cloud-starter-hystrix")
  21. compile 'org.springframework.cloud:spring-cloud-starter-zuul'
  22. compile 'org.springframework.cloud:spring-cloud-starter-oauth2'
  23. compile "com.uas.cloud.base.commons:common:0.1.0"
  24. }