dependency 'org.sonarsource.flex:sonar-flex-plugin:2.5.1.1831' // bundled_plugin:flex:sonar-flex
dependency 'org.sonarsource.html:sonar-html-plugin:3.2.0.2082' // bundled_plugin:web:sonar-html
dependency 'org.sonarsource.jacoco:sonar-jacoco-plugin:1.0.2.475' // bundled_plugin:jacoco:sonar-jacoco
- dependency 'org.sonarsource.java:sonar-java-plugin:5.14.0.18788' // bundled_plugin:java:sonar-java
+ dependency 'org.sonarsource.java:sonar-java-plugin:6.0.0.20538' // bundled_plugin:java:sonar-java
dependency 'org.sonarsource.javascript:sonar-javascript-plugin:6.1.0.11503' // bundled_plugin:javascript:SonarJS
dependency 'org.sonarsource.php:sonar-php-plugin:3.3.0.5166' // bundled_plugin:php:sonar-php
dependency 'org.sonarsource.python:sonar-python-plugin:2.3.0.5351' // bundled_plugin:python:sonar-python
}
// Check the size of the archive
zip.doLast {
- def minLength = 203000000
- def maxLength = 212000000
+ def minLength = 212000000
+ def maxLength = 221000000
def length = archiveFile.get().asFile.length()
if (length < minLength)
throw new GradleException("$archiveName size ($length) too small. Min is $minLength")