Skip to content

Commit

Permalink
Maintainer tasks (#6)
Browse files Browse the repository at this point in the history
Add the "versions" plugin to help maintainers keep the repo dependencies
up to date.
  • Loading branch information
binkley authored Sep 8, 2023
1 parent 9e8da33 commit 8f9d731
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ plugins {
kotlin("jvm")
id("io.ktor.plugin")
id("io.gitlab.arturbosch.detekt")
id("com.github.ben-manes.versions")
}

val kotlin_version: String by project
Expand Down
9 changes: 5 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
logback_version=1.4.8
ktor_version=2.3.2
detekt_version=1.23.0
jackson_version=2.15.2
kotlin_version=1.9.0
ktor_version=2.3.2
logback_version=1.4.8
strikt_version=0.34.1
jackson_version=2.15.2
detekt_version=1.23.0
versions_version=0.46.0
2 changes: 2 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ pluginManagement {
val kotlin_version: String by settings
val ktor_version: String by settings
val detekt_version: String by settings
val versions_version: String by settings
plugins {
kotlin("jvm") version kotlin_version
id("io.ktor.plugin") version ktor_version
id("io.gitlab.arturbosch.detekt") version detekt_version
id("com.github.ben-manes.versions") version versions_version
}
}

Expand Down

0 comments on commit 8f9d731

Please sign in to comment.