diff options
author | lukasz-jarocki-sonarsource <lukasz.jarocki@sonarsource.com> | 2023-07-06 10:41:51 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-07-07 20:03:21 +0000 |
commit | 08cea0be114b6b08931bb713cff4b3738d52183d (patch) | |
tree | f35f6b0d87feac45f14992c89abef3fa530c1fc9 /sonar-application | |
parent | 72b5be9c5e3068470ae473e1d5ae418c40115141 (diff) | |
download | sonarqube-08cea0be114b6b08931bb713cff4b3738d52183d.tar.gz sonarqube-08cea0be114b6b08931bb713cff4b3738d52183d.zip |
NO-JIRA bumped bouncycastle to 1.74
Diffstat (limited to 'sonar-application')
-rw-r--r-- | sonar-application/build.gradle | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index ddd269c07ef..7db7ff12b35 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -45,6 +45,7 @@ shadowJar { archiveBaseName = 'sonar-application' archiveClassifier = null mergeServiceFiles() + zip64 true manifest { attributes('Main-Class': 'org.sonar.application.App') } @@ -311,7 +312,7 @@ task zip(type: Zip, dependsOn: [configurations.compileClasspath]) { // Check the size of the archive zip.doLast { def minLength = 340000000 - def maxLength = 371000000 + def maxLength = 391000000 def length = archiveFile.get().asFile.length() if (length < minLength) |