17 lines
252 B
Plaintext
17 lines
252 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
register("check-lib-versions") {
|
|
id = "check-lib-versions"
|
|
implementationClass = "CheckLibVersionsPlugin"
|
|
}
|
|
}
|
|
}
|