Skip to content

Commit

Permalink
SONAR-21973 Increase allowed max size of the ZIP archive due to new m…
Browse files Browse the repository at this point in the history
…aterial-symbols dependency
  • Loading branch information
david-cho-lerat-sonarsource authored and sonartech committed Apr 12, 2024
1 parent c03b271 commit cd15393
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sonar-application/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit cd15393

Please sign in to comment.