]> source.dussan.org Git - sonarqube.git/commitdiff
NO-JIRA bumped bouncycastle to 1.74
authorlukasz-jarocki-sonarsource <lukasz.jarocki@sonarsource.com>
Thu, 6 Jul 2023 08:41:51 +0000 (10:41 +0200)
committersonartech <sonartech@sonarsource.com>
Fri, 7 Jul 2023 20:03:21 +0000 (20:03 +0000)
server/sonar-alm-client/build.gradle
sonar-application/build.gradle

index fa06b389318a6fb7d679f478273c133cc4667c16..aa6ab63d148a1d9301361af5dd37a918291a01cf 100644 (file)
@@ -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')
 
index ddd269c07ef7b2de371dece93c41a0b46f10790d..7db7ff12b35b5ec5a80be6965a75e5f45c9fe88e 100644 (file)
@@ -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)