Commit 189fc19c authored by gaoxu's avatar gaoxu 😵

更新spring-cloud-greenwich.gradle

parent a1d89e4c
Pipeline #69 canceled with stages
plugins { plugins {
id 'org.springframework.boot' version '2.1.3.RELEASE' id 'org.springframework.boot' version '2.1.3.RELEASE'
id 'java' id 'java'
id 'maven-publish'
} }
apply plugin: 'io.spring.dependency-management' apply plugin: 'io.spring.dependency-management'
group = 'nice.parent'
version = '0.0.1-Greenwich.RELEASE'
sourceCompatibility = '1.8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories { repositories {
maven { url "https://maven.aliyun.com/repository/public" }
mavenCentral() mavenCentral()
maven { url "https://repo.spring.io/milestone" } maven { url 'https://repo.spring.io/milestone' }
} }
ext { ext {
...@@ -27,12 +15,14 @@ ext { ...@@ -27,12 +15,14 @@ ext {
} }
dependencies { dependencies {
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.cloud:spring-cloud-starter-consul-discovery' implementation 'org.springframework.cloud:spring-cloud-starter-consul-discovery'
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-hystrix' implementation 'org.springframework.cloud:spring-cloud-starter-netflix-hystrix'
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-ribbon' implementation 'org.springframework.cloud:spring-cloud-starter-netflix-ribbon'
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'
implementation 'org.springframework.retry:spring-retry' implementation 'org.springframework.retry:spring-retry'
runtimeOnly 'org.springframework.boot:spring-boot-devtools'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
} }
dependencyManagement { dependencyManagement {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment