1 Star 0 Fork 7

x92021/SonarQube

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
settings.gradle 1.70 KB
一键复制 编辑 原始数据 按行查看 历史
Evgeny Mandrikov 提交于 2020-04-01 01:10 +08:00 . Gradle scripts should use plugins block
pluginManagement {
repositories {
maven {
url 'https://repox.jfrog.io/repox/plugins.gradle.org/'
}
}
}
rootProject.name = 'sonarqube'
include 'plugins:sonar-xoo-plugin'
include 'server:sonar-auth-common'
include 'server:sonar-auth-github'
include 'server:sonar-auth-gitlab'
include 'server:sonar-auth-ldap'
include 'server:sonar-auth-saml'
include 'server:sonar-ce'
include 'server:sonar-ce-common'
include 'server:sonar-ce-task'
include 'server:sonar-ce-task-projectanalysis'
include 'server:sonar-db-core'
include 'server:sonar-db-dao'
include 'server:sonar-db-migration'
include 'server:sonar-main'
include 'server:sonar-process'
include 'server:sonar-server-common'
include 'server:sonar-web'
include 'server:sonar-webserver'
include 'server:sonar-webserver-api'
include 'server:sonar-webserver-auth'
include 'server:sonar-webserver-core'
include 'server:sonar-webserver-es'
include 'server:sonar-webserver-webapi'
include 'server:sonar-webserver-ws'
include 'sonar-application'
include 'sonar-check-api'
include 'sonar-core'
include 'sonar-duplications'
include 'sonar-markdown'
include 'sonar-plugin-api'
include 'sonar-plugin-api-impl'
include 'sonar-scanner-engine'
include 'sonar-scanner-engine-shaded'
include 'sonar-scanner-protocol'
include 'sonar-shutdowner'
include 'sonar-testing-harness'
include 'sonar-testing-ldap'
include 'sonar-ws'
include 'sonar-ws-generator'
// use Settings.getRootDir() so that it doesn't matter which directory you are executing from
File extraSettings = new File(rootDir, 'private/settings.gradle')
if (extraSettings.exists()) {
apply from: extraSettings
}
ext.isCiServer = System.getenv().containsKey("CIRRUS_CI")
buildCache {
local {
enabled = !isCiServer
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/x92021/sonarqube.git
git@gitee.com:x92021/sonarqube.git
x92021
sonarqube
SonarQube
master

搜索帮助