diff options
author | Evgeny Mandrikov <138671+Godin@users.noreply.github.com> | 2020-03-31 19:10:05 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-03-31 20:03:36 +0000 |
commit | 3ff51cc35893c1b4157eae6c758f2dcd11ba718c (patch) | |
tree | 5df28057f86b00a50f0bd26819154195d8f1e170 /settings.gradle | |
parent | ecb724151b892faeab9a4e0f1408ee8cd8fddc4c (diff) | |
download | sonarqube-3ff51cc35893c1b4157eae6c758f2dcd11ba718c.tar.gz sonarqube-3ff51cc35893c1b4157eae6c758f2dcd11ba718c.zip |
Gradle scripts should use `plugins` block
It was de-incubated (promoted) in Gradle 5.0
and in particular it can't contain duplicate IDs.
Diffstat (limited to 'settings.gradle')
-rw-r--r-- | settings.gradle | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/settings.gradle b/settings.gradle index 0dfa69d588f..91c5df3c436 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,3 +1,11 @@ +pluginManagement { + repositories { + maven { + url 'https://repox.jfrog.io/repox/plugins.gradle.org/' + } + } +} + rootProject.name = 'sonarqube' include 'plugins:sonar-xoo-plugin' @@ -55,4 +63,3 @@ buildCache { enabled = !isCiServer } } - |