build.gradle 591 B

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