1 Star 0 Fork 0

JerryTomson/eureka-learn

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 1.74 KB
一键复制 编辑 原始数据 按行查看 历史
buildscript {
repositories { jcenter() }
dependencies {
classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:2.2.+'
}
}
plugins {
id 'nebula.netflixoss' version '9.1.0'
id 'org.gretty' version '2.1.0'
}
idea {
project {
languageLevel = '1.8'
}
}
if (JavaVersion.current().isJava8Compatible()) {
allprojects {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
}
allprojects {
ext {
githubProjectName = 'eureka'
awsVersion = '1.11.277'
servletVersion = '2.5'
jerseyVersion = '1.19.1'
jettisonVersion = '1.4.0'
apacheHttpClientVersion = '4.5.3'
commonsConfigurationVersion = '1.10'
jsr305Version = '3.0.2'
guiceVersion = '4.1.0'
servoVersion = '0.12.21'
governatorVersion = '1.17.5'
archaiusVersion = '0.7.6'
jacksonVersion = '2.9.10'
jacksonDatabindVersion = '2.9.10.6'
woodstoxVersion = '5.2.1'
// test deps
jetty_version = '7.2.0.v20101020'
junit_version = '4.11'
mockitoVersion = '1.10.19'
mockserverVersion = '3.9.2'
}
}
subprojects {
apply plugin: 'nebula.netflixoss'
apply plugin: 'java'
group = "com.netflix.${githubProjectName}"
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
}
test {
forkEvery = 1
// setting this property prevents java from grabbing focus when running the tests under osx
systemProperty 'java.awt.headless', 'true'
}
jar {
manifest {
attributes('Build-Time-ISO-8601': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"))
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/loveJerry/eureka-learn.git
git@gitee.com:loveJerry/eureka-learn.git
loveJerry
eureka-learn
eureka-learn
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385