-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (37 loc) · 1.34 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
buildscript {
ext {
springBootVersion = '2.1.1.RELEASE'
}
repositories {
maven {url 'http://maven.aliyun.com/nexus/content/groups/public/'}
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group = 'com.weather.spring.cloud'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
maven {url 'http://maven.aliyun.com/nexus/content/groups/public/'}
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.7'
// https://mvnrepository.com/artifact/com.netflix.feign/feign-httpclient
compile group: 'com.netflix.feign', name: 'feign-httpclient', version: '8.18.0'
// https://mvnrepository.com/artifact/com.alibaba.fescar/fescar-core
compile group: 'com.alibaba.fescar', name: 'fescar-all', version: '0.2.2'
compile project(':msa-weather-city-collection-api')
compile project(':msa-weather-data-collection-api')
compile project(':msa-weather-data-server-api')
compile project(':msa-weather-eureka-server-api')
compile project(':msa-weather-report-api')
compile project(':msa-weather-gateway-api')
}