Skip to content

Commit

Permalink
Add swisstransfer exclusion for SVGs
Browse files Browse the repository at this point in the history
  • Loading branch information
tevincent committed Aug 26, 2024
1 parent cff9f34 commit 38508a9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {
alias(libs.plugins.kapt)
alias(libs.plugins.hilt)
kotlin("plugin.serialization") version libs.versions.kotlin
id("org.sonarqube") version "5.1.0.4882" // Replace with latest scanner version number
}

val sharedMinSdk: Int by rootProject.extra
Expand Down Expand Up @@ -52,6 +53,12 @@ android {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
}
}
sonarqube {
properties {
property("sonar.sources", "src/main/java/com/infomaniak/swisstransfer")
property("sonar.exclusions", "src/main/java/com/infomaniak/swisstransfer/ui/icons/**")
}
}
}

kapt {
Expand Down

0 comments on commit 38508a9

Please sign in to comment.