From: lukasz-jarocki-sonarsource Date: Thu, 6 Jul 2023 08:41:51 +0000 (+0200) Subject: NO-JIRA bumped bouncycastle to 1.74 X-Git-Tag: 10.2.0.77647~443 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=08cea0be114b6b08931bb713cff4b3738d52183d;p=sonarqube.git NO-JIRA bumped bouncycastle to 1.74 --- diff --git a/server/sonar-alm-client/build.gradle b/server/sonar-alm-client/build.gradle index fa06b389318..aa6ab63d148 100644 --- a/server/sonar-alm-client/build.gradle +++ b/server/sonar-alm-client/build.gradle @@ -9,7 +9,7 @@ dependencies { api 'com.squareup.okhttp3:okhttp' api 'commons-codec:commons-codec' api 'com.auth0:java-jwt' - api 'org.bouncycastle:bcpkix-jdk15on:1.70' + api 'org.bouncycastle:bcpkix-jdk18on:1.74' api 'org.sonarsource.api.plugin:sonar-plugin-api' api project(':server:sonar-auth-github') 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)