加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
maven {
allowInsecureProtocol = true
url "http://mirrors.cloud.tencent.com/nexus/repository/maven-public/"
}
mavenCentral()
maven { url "https://jitpack.io" }
maven {
url "https://plugins.gradle.org/m2/"
}
google()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.5.6")
}
}
allprojects {
apply plugin: 'maven-publish'
apply plugin: 'java'
apply plugin: 'idea'
sourceCompatibility = '11'
targetCompatibility = '11'
repositories {
maven {
allowInsecureProtocol = true
url "http://mirrors.cloud.tencent.com/nexus/repository/maven-public/"
}
mavenCentral()
maven { url "https://jitpack.io" }
maven {
url "https://plugins.gradle.org/m2/"
}
google()
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化