blob: f77566aad23c172cd069ab57e6ed3e66be11d942 [file] [log] [blame]
Tang Chengdc148412019-07-08 09:15:47 +08001plugins {
2 id 'java'
3 id 'org.springframework.boot'
4 id "com.palantir.git-version"
5}
6
7
8apply plugin: 'io.spring.dependency-management'
9
10dependencies {
11 implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
12 implementation 'org.springframework.boot:spring-boot-starter-data-redis'
13
Tang Cheng800e49b2019-07-08 13:12:50 +080014
15 implementation project(':common')
16
Tang Chengdc148412019-07-08 09:15:47 +080017 implementation 'org.springframework.cloud:spring-cloud-dependencies:Finchley.SR3'
18 implementation 'org.springframework.cloud:spring-cloud-starter-openfeign:2.1.2.RELEASE'
19}