1 Star 0 Fork 0

constfafa / config-server-demo03-core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 1.32 KB
AI 代码解读
一键复制 编辑 原始数据 按行查看 历史
buildscript {
ext {
springBootVersion = '1.4.2.RELEASE'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
group = 'cn.bellychang'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
maven {url 'http://maven.aliyun.com/nexus/content/groups/public/'}
mavenCentral()
}
ext {
springCloudVersion = 'Camden.SR2'
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-amqp')
compile('org.springframework.boot:spring-boot-starter-web')
compile('org.springframework.cloud:spring-cloud-bus')
compile("org.springframework.cloud:spring-cloud-starter-config")
compile('org.springframework.cloud:spring-cloud-stream-binder-rabbit')
compile group: 'org.springframework.cloud', name: 'spring-cloud-starter-eureka', version: '1.0.0.RELEASE'
compile('org.springframework.cloud:spring-cloud-netflix-eureka-client')
compile('org.springframework.boot:spring-boot-starter-data-jpa')
compile group: 'mysql', name: 'mysql-connector-java', version: '5.1.38'
testCompile('org.springframework.boot:spring-boot-starter-test')
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}
1
https://gitee.com/constfafa/config-server-demo03-core.git
git@gitee.com:constfafa/config-server-demo03-core.git
constfafa
config-server-demo03-core
config-server-demo03-core
master

搜索帮助