浏览代码

SONAR-19410 Embed the Clean as You Code plugin

tags/10.1.0.73491
Philippe Perrin 11 个月前
父节点
当前提交
213f652efd
共有 3 个文件被更改,包括 4 次插入2 次删除
  1. 1
    0
      build.gradle
  2. 2
    2
      sonar-application/build.gradle
  3. 1
    0
      sonar-application/bundled_plugins.gradle

+ 1
- 0
build.gradle 查看文件

dependency 'org.sonarsource.java:sonar-java-plugin:7.20.0.31692' dependency 'org.sonarsource.java:sonar-java-plugin:7.20.0.31692'
dependency 'org.sonarsource.javascript:sonar-javascript-plugin:10.3.0.21893' dependency 'org.sonarsource.javascript:sonar-javascript-plugin:10.3.0.21893'
dependency 'org.sonarsource.php:sonar-php-plugin:3.30.0.9766' dependency 'org.sonarsource.php:sonar-php-plugin:3.30.0.9766'
dependency 'org.sonarsource.plugins.cayc:sonar-cayc-plugin:2.0.0.334'
dependency 'org.sonarsource.python:sonar-python-plugin:4.3.0.11660' dependency 'org.sonarsource.python:sonar-python-plugin:4.3.0.11660'
dependency 'org.sonarsource.slang:sonar-go-plugin:1.13.0.4374' dependency 'org.sonarsource.slang:sonar-go-plugin:1.13.0.4374'
dependency 'org.sonarsource.kotlin:sonar-kotlin-plugin:2.15.0.2579' dependency 'org.sonarsource.kotlin:sonar-kotlin-plugin:2.15.0.2579'

+ 2
- 2
sonar-application/build.gradle 查看文件



// Check the size of the archive // Check the size of the archive
zip.doLast { zip.doLast {
def minLength = 330000000
def maxLength = 361000000
def minLength = 340000000
def maxLength = 371000000


def length = archiveFile.get().asFile.length() def length = archiveFile.get().asFile.length()
if (length < minLength) if (length < minLength)

+ 1
- 0
sonar-application/bundled_plugins.gradle 查看文件

bundledPlugin 'org.sonarsource.jacoco:sonar-jacoco-plugin' bundledPlugin 'org.sonarsource.jacoco:sonar-jacoco-plugin'
bundledPlugin 'org.sonarsource.javascript:sonar-javascript-plugin' bundledPlugin 'org.sonarsource.javascript:sonar-javascript-plugin'
bundledPlugin 'org.sonarsource.php:sonar-php-plugin' bundledPlugin 'org.sonarsource.php:sonar-php-plugin'
bundledPlugin 'org.sonarsource.plugins.cayc:sonar-cayc-plugin'
bundledPlugin 'org.sonarsource.python:sonar-python-plugin' bundledPlugin 'org.sonarsource.python:sonar-python-plugin'
bundledPlugin 'org.sonarsource.slang:sonar-go-plugin' bundledPlugin 'org.sonarsource.slang:sonar-go-plugin'
bundledPlugin "org.sonarsource.kotlin:sonar-kotlin-plugin" bundledPlugin "org.sonarsource.kotlin:sonar-kotlin-plugin"

正在加载...
取消
保存