mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 10:30:38 +00:00
Extract checkLibVersions task to gradle plugin
This commit is contained in:
parent
c72aeed8bb
commit
4eaec83594
4 changed files with 57 additions and 33 deletions
16
buildSrc/build.gradle.kts
Normal file
16
buildSrc/build.gradle.kts
Normal file
|
@ -0,0 +1,16 @@
|
|||
plugins {
|
||||
`kotlin-dsl`
|
||||
}
|
||||
|
||||
repositories {
|
||||
jcenter()
|
||||
}
|
||||
|
||||
gradlePlugin {
|
||||
plugins {
|
||||
register("check-lib-versions") {
|
||||
id = "check-lib-versions"
|
||||
implementationClass = "CheckLibVersionsPlugin"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue