浏览代码

SONAR-21973 Increase allowed max size of the ZIP archive due to new material-symbols dependency

pull/3360/head
David Cho-Lerat 1 个月前
父节点
当前提交
cd15393821
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      sonar-application/build.gradle

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

@@ -322,7 +322,7 @@ task zip(type: Zip, dependsOn: [configurations.compileClasspath]) {
// Check the size of the archive
zip.doLast {
def minLength = 340000000
def maxLength = 460000000
def maxLength = 475000000

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

正在加载...
取消
保存