1234567891011121314151617181920212223242526272829303132 |
- apply from: "$rootDir/gradle/service-base.gradle"
- apply from: "$rootDir/gradle/publish.gradle"
- apply from: "$rootDir/gradle/docker.gradle"
- group 'com.uas.cloud.mall'
- version '0.1.0'
- ext {
- baseName = 'mall-home-app'
- artifactId = 'mall-home-app'
- }
- jar {
- baseName = "${baseName}"
- version = '0.1.0'
- }
- dependencies {
- // compile("org.springframework.boot:spring-boot-starter-web")
- // compile("org.thymeleaf:thymeleaf-spring4")
- compile("org.springframework.boot:spring-boot-starter-thymeleaf")
- compile("org.springframework.cloud:spring-cloud-starter-feign")
- compile("org.springframework.cloud:spring-cloud-starter-ribbon")
- compile("org.springframework.cloud:spring-cloud-starter-hystrix")
- compile 'org.springframework.cloud:spring-cloud-starter-zuul'
- compile 'org.springframework.cloud:spring-cloud-starter-oauth2'
- compile "com.uas.cloud.base.commons:common:0.1.0"
- }
|