mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 18:40:39 +00:00
16 lines
252 B
Kotlin
16 lines
252 B
Kotlin
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
register("check-lib-versions") {
|
|
id = "check-lib-versions"
|
|
implementationClass = "CheckLibVersionsPlugin"
|
|
}
|
|
}
|
|
}
|