diff options
author | David Rautureau <david.rautureau@sonarsource.com> | 2018-03-26 21:34:32 +0200 |
---|---|---|
committer | Janos Gyerik <janos.gyerik@sonarsource.com> | 2018-04-04 14:25:33 +0200 |
commit | 8955ad9bad3490a2562a5972bad09c72bdd8b2cc (patch) | |
tree | 4a6763d798780c8367219f23290ceed13439440e /build.gradle | |
parent | a26706fb2cb83f0a5a8e5d888b443be0568940e9 (diff) | |
download | sonarqube-8955ad9bad3490a2562a5972bad09c72bdd8b2cc.tar.gz sonarqube-8955ad9bad3490a2562a5972bad09c72bdd8b2cc.zip |
BUILD-631 Check project dependencies versions [ci skip]
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 2100179599d..c31cc34c13e 100644 --- a/build.gradle +++ b/build.gradle @@ -5,8 +5,8 @@ buildscript { } } dependencies { - // check updates with https://plugins.gradle.org/ // Ordered alphabeticly to avoid duplication + classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0' classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.2' classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.4' classpath 'com.moowork.gradle:gradle-node-plugin:1.2.0' @@ -26,6 +26,7 @@ sonarqube { } allprojects { + apply plugin: 'com.github.ben-manes.versions' apply plugin: 'com.jfrog.artifactory' apply plugin: 'maven-publish' |