4 Star 2 Fork 0

高性能分布式计算系统开发小组/集群管理平台

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 2.85 KB
一键复制 编辑 原始数据 按行查看 历史
lining 提交于 2020-05-20 20:35 . 合并邮件发送
group 'org.xupt'
version '0.0.1'
buildscript {
ext {
springBootVersion = '2.1.2.RELEASE'
}
repositories {
maven { url "https://maven.aliyun.com/repository/public"}
maven { url "https://repo1.maven.org/maven2/" }
maven { url "http://unidal.org/nexus/content/repositories/releases/"}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion")
}
}
ext {
springBootVersion = "2.1.2.RELEASE"
jacksonJsonVersion = "2.10.1"
javaxServletVersion = "4.0.1"
commonsLang3Versin = "3.8.1"
junitVersion = "4.3"
lombokVersion = '1.18.8'
catClientVersion = "3.0.0"
jsoupVersion = "1.12.1"
}
allprojects {
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'base'
apply plugin: 'application'
apply plugin: 'org.springframework.boot'
sourceCompatibility = 1.8
targetCompatibility = 1.8
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
mainClassName="org.xupt.cat.proxy.api.CatProxyApiApplication"
}
subprojects {
version = parent.version
group = parent.group
repositories {
maven { url "https://maven.aliyun.com/repository/public"}
maven { url "https://repo1.maven.org/maven2/" }
maven { url "http://unidal.org/nexus/content/repositories/releases/"}
}
sourceSets {
main {
resources {
srcDirs = ["src/main/resources", "src/main/resources/"]
}
}
test {
resources {
srcDirs = ["src/test/resources", "src/test/resources/"]
}
}
}
dependencies {
compile "org.springframework.boot:spring-boot-starter-validation:$springBootVersion"
compile "org.springframework.boot:spring-boot-starter:$springBootVersion"
// Log4j2
compile "org.springframework.boot:spring-boot-starter-log4j2:$springBootVersion"
// Apache Commons
compile "org.apache.commons:commons-lang3:$commonsLang3Versin"
//lombok
compile "org.projectlombok:lombok:$lombokVersion"
compile "org.jsoup:jsoup:$jsoupVersion"
// 单元测试
testCompile "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
testCompile "junit:junit:$junitVersion"
}
configurations {
all*.exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
}
}
project(":cat-proxy-api") {
jar.archiveName = "cat-proxy-api.jar"
dependencies {
compile "javax.servlet:javax.servlet-api:$javaxServletVersion"
compile "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
compile "org.springframework.boot:spring-boot-starter-aop:$springBootVersion"
compile "org.springframework.boot:spring-boot-starter-mail:$springBootVersion"
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/XUPTDCS/cluster_management_platform.git
git@gitee.com:XUPTDCS/cluster_management_platform.git
XUPTDCS
cluster_management_platform
集群管理平台
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385