2 Star 2 Fork 0

trivia / registry-config

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 1.37 KB
一键复制 编辑 原始数据 按行查看 历史
trivia 提交于 2018-06-20 11:03 . initial commit
allprojects {
//apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'application'
mainClassName = "com.trivia.Application"
}
// JVM 版本号要求
sourceCompatibility = 1.8
targetCompatibility = 1.8
buildscript {
project.ext {
bootVersion = '1.4.7.RELEASE'
cloudVersion = '1.2.0.RELEASE'
seurityVersion = '2.0.7.RELEASE'
}
repositories {
mavenLocal()
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
mavenCentral()
jcenter()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:${project.bootVersion}"
}
}
subprojects {
version = '0.0.2'
ext {
bootVersion = '1.4.7.RELEASE'
cloudVersion = '1.2.0.RELEASE'
seurityVersion = '2.0.7.RELEASE'
}
repositories {
mavenLocal()
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
mavenCentral()
jcenter()
}
dependencies {
compile "org.springframework.cloud:spring-cloud-starter-config:${cloudVersion}"
compile "org.springframework.cloud:spring-cloud-starter-eureka:${cloudVersion}"
compile "org.springframework.cloud:spring-cloud-starter-security:${cloudVersion}"
testCompile "org.springframework.boot:spring-boot-starter-test:${bootVersion}"
}
}
Java
1
https://gitee.com/savoki/registry-config.git
git@gitee.com:savoki/registry-config.git
savoki
registry-config
registry-config
master

搜索帮助