소스 검색

Reactivate zip size check for non release build

tags/7.8
Grégoire Aubert 5 년 전
부모
커밋
6edd73a5b4
1개의 변경된 파일7개의 추가작업 그리고 9개의 파일을 삭제
  1. 7
    9
      sonar-application/build.gradle

+ 7
- 9
sonar-application/build.gradle 파일 보기

@@ -175,15 +175,13 @@ zip.doFirst {
}
// Check the size of the archive
zip.doLast {
if (release) {
def minLength = 191000000
def maxLength = 198000000
def length = new File(distsDir, archiveName).length()
if (length < minLength)
throw new GradleException("$archiveName size ($length) too small. Min is $minLength")
if (length > maxLength)
throw new GradleException("$distsDir/$archiveName size ($length) too large. Max is $maxLength")
}
def minLength = 191000000
def maxLength = 198000000
def length = new File(distsDir, archiveName).length()
if (length < minLength)
throw new GradleException("$archiveName size ($length) too small. Min is $minLength")
if (length > maxLength)
throw new GradleException("$distsDir/$archiveName size ($length) too large. Max is $maxLength")
}
assemble.dependsOn zip


Loading…
취소
저장