Skip to content

Commit 2a37ace

Browse files
Fix: for SonarQube - Sensitive: dependency verification is disabled
1 parent 68906c3 commit 2a37ace

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

app/build.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,14 @@ dependencies {
6969
testRuntimeOnly("org.junit.platform:junit-platform-launcher:$junitVer")
7070
}
7171

72+
configurations {
73+
all {
74+
resolutionStrategy {
75+
disableDependencyVerification() // Sensitive: dependency verification is disabled
76+
}
77+
}
78+
}
79+
7280
checkstyle {
7381
toolVersion = "10.26.1"
7482
configFile = file("config/checkstyle/checkstyle.xml")

0 commit comments

Comments
 (0)