Skip to content

Commit

Permalink
Merge pull request #170 from RADAR-base/bugfix/slf4j-version-gradle-p…
Browse files Browse the repository at this point in the history
…lugin

Fix ktlint version used for default slf4j version
  • Loading branch information
pvannierop authored Sep 24, 2024
2 parents 6fbc891 + 8d25fa9 commit 63f9314
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class RadarKotlinPlugin : Plugin<Project> {
kotlinApiVersion.convention("")
junitVersion.convention(Versions.junit)
ktlintVersion.convention(Versions.ktlint)
slf4jVersion.convention(Versions.ktlint)
slf4jVersion.convention(Versions.slf4j)
sentryEnabled.convention(false)
sentryOrganization.convention("radar-base")
sentryProject.convention(project.name)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ object Versions {
const val ktlint = "0.50.0"
const val java = 11
const val junit = "5.10.0"
const val slf4j = "2.0.16"
}

0 comments on commit 63f9314

Please sign in to comment.