1 Star 0 Fork 0

siri-zheng/spring-boot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 682 Bytes
一键复制 编辑 原始数据 按行查看 历史
Andy Wilkinson 提交于 2020-05-15 15:36 . Use HTTPS for license links
plugins {
id "org.jetbrains.kotlin.jvm" apply false // https://youtrack.jetbrains.com/issue/KT-30276
id "io.spring.nohttp" version "0.0.3.RELEASE"
}
description = "Spring Boot Build"
defaultTasks 'build'
nohttp {
whitelistFile = project.file("src/nohttp/whitelist.lines")
source.exclude "buildSrc/build/**"
}
allprojects {
group "org.springframework.boot"
repositories {
mavenCentral()
if (!version.endsWith('RELEASE')) {
maven { url "https://repo.spring.io/milestone" }
}
if (version.endsWith('BUILD-SNAPSHOT')) {
maven { url "https://repo.spring.io/snapshot" }
}
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 60, "minutes"
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sirizheng/spring-boot.git
git@gitee.com:sirizheng/spring-boot.git
sirizheng
spring-boot
spring-boot
master

搜索帮助