Skip to content

Commit

Permalink
wip(workflows): Fix merge_on_main workflow
Browse files Browse the repository at this point in the history
Resolves: DCMAW-8361

Co-authored-by: Delphine <[email protected]>
Co-authored-by: Aamir <[email protected]>
  • Loading branch information
3 people committed Apr 25, 2024
1 parent dc540c3 commit 3cdaa9c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt-gradle" }
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin-general" }
ktlint = { id = "org.jlleitschuh.gradle.ktlint", version.ref = "ktlint-gradle" }
shellcheck = { id = "com.felipefzdz.gradle.shellcheck", version.ref = "shellcheck-gradle" }
dependency-check = { id = "org.owasp.dependencycheck", version.ref = "dependency-check-gradle" }
dependencyCheck = { id = "org.owasp.dependencycheck", version.ref = "dependency-check-gradle" }
sonarqube = { id = "org.sonarqube", version.ref = "sonarqube-gradle" }
jacoco = { id = "jacoco" } # Base plugin that comes with gradle by default

Expand Down
5 changes: 5 additions & 0 deletions modules/buildLogic/plugins/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ plugins {
`kotlin-dsl`
alias(libs.plugins.detekt)
alias(libs.plugins.ktlint)
alias(libs.plugins.dependencyCheck)
}

dependencies {
Expand All @@ -24,3 +25,7 @@ ktlint {
exclude { it.file.absolutePath.contains("/build/") }
}
}

dependencyCheck {
analyzers.assemblyEnabled = false
}

0 comments on commit 3cdaa9c

Please sign in to comment.