aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application/build.gradle
diff options
context:
space:
mode:
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>2019-10-14 15:58:13 +0200
committerSonarTech <sonartech@sonarsource.com>2019-10-15 11:52:16 +0200
commit7508698bf21375403e2ec050b2006a989afafe54 (patch)
treeff9becddf8278eead26fd6efe3c706dfe42974c8 /sonar-application/build.gradle
parent5ffbca28be1f929b2a0da4d8e1aefb66a83ec99c (diff)
downloadsonarqube-7508698bf21375403e2ec050b2006a989afafe54.tar.gz
sonarqube-7508698bf21375403e2ec050b2006a989afafe54.zip
SONAR-12252 upgrade scm-git plugin to 1.9.1
Diffstat (limited to 'sonar-application/build.gradle')
-rw-r--r--sonar-application/build.gradle10
1 files changed, 5 insertions, 5 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle
index 6ac25ac9460..a7f07a87319 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -56,15 +56,15 @@ dependencies {
bundledPlugin 'org.sonarsource.flex:sonar-flex-plugin@jar'
bundledPlugin 'org.sonarsource.html:sonar-html-plugin@jar'
bundledPlugin 'org.sonarsource.java:sonar-java-plugin@jar'
- bundledPlugin 'org.sonarsource.jacoco:sonar-jacoco-plugin:1.0.2.475@jar'
+ bundledPlugin 'org.sonarsource.jacoco:sonar-jacoco-plugin@jar'
bundledPlugin 'org.sonarsource.javascript:sonar-javascript-plugin@jar'
bundledPlugin 'org.sonarsource.php:sonar-php-plugin@jar'
bundledPlugin 'org.sonarsource.python:sonar-python-plugin@jar'
bundledPlugin 'org.sonarsource.slang:sonar-go-plugin@jar'
bundledPlugin "org.sonarsource.slang:sonar-kotlin-plugin@jar"
bundledPlugin "org.sonarsource.slang:sonar-ruby-plugin@jar"
- bundledPlugin 'org.sonarsource.scm.git:sonar-scm-git-plugin:1.8.0.1574@jar'
- bundledPlugin 'org.sonarsource.scm.svn:sonar-scm-svn-plugin:1.9.0.1295@jar'
+ bundledPlugin 'org.sonarsource.scm.git:sonar-scm-git-plugin@jar'
+ bundledPlugin 'org.sonarsource.scm.svn:sonar-scm-svn-plugin@jar'
bundledPlugin "org.sonarsource.slang:sonar-scala-plugin@jar"
bundledPlugin 'org.sonarsource.typescript:sonar-typescript-plugin@jar'
bundledPlugin 'org.sonarsource.xml:sonar-xml-plugin@jar'
@@ -193,8 +193,8 @@ zip.doFirst {
}
// Check the size of the archive
zip.doLast {
- def minLength = 199000000
- def maxLength = 207000000
+ def minLength = 200000000
+ def maxLength = 208000000
def length = archiveFile.get().asFile.length()
if (length < minLength)
throw new GradleException("$archiveName size ($length) too small. Min is $minLength")