Skip to content

Commit

Permalink
Workaround to avoid issues with sonar plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
JcMinarro committed Jan 2, 2025
1 parent 3c07032 commit 9396063
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,16 @@ plugins {
alias(libs.plugins.dokka)
}

buildscript {
dependencies {
// TODO: Remove this workaround after AGP 8.9.0 is released
// Workaround for integrate sonarqube plugin with AGP
// It looks like will be fixed after AGP 8.9.0-alpha04 is released
// https://issuetracker.google.com/issues/380600747?pli=1
classpath("org.bouncycastle:bcutil-jdk18on:1.79")
}
}

apply(from = "${rootDir}/scripts/sample-app-versioner.gradle")
apply(from = "${rootDir}/scripts/sonar.gradle")

Expand Down

0 comments on commit 9396063

Please sign in to comment.