Browse Source

NO-JIRA bumped bouncycastle to 1.74

tags/10.2.0.77647
lukasz-jarocki-sonarsource 10 months ago
parent
commit
08cea0be11
2 changed files with 3 additions and 2 deletions
  1. 1
    1
      server/sonar-alm-client/build.gradle
  2. 2
    1
      sonar-application/build.gradle

+ 1
- 1
server/sonar-alm-client/build.gradle View 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')


+ 2
- 1
sonar-application/build.gradle View 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)

Loading…
Cancel
Save