ソースを参照

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


読み込み中…
キャンセル
保存