31 lines
598 B
Text
31 lines
598 B
Text
apply(from = "buildDependencies.gradle")
|
|
val build: Map<Any, Any> by extra
|
|
|
|
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
gradlePluginPortal()
|
|
jcenter()
|
|
}
|
|
|
|
kotlinDslPluginOptions {
|
|
experimentalWarning.set(false)
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
register("aps") {
|
|
id = "aps-plugin"
|
|
implementationClass = "PasswordStorePlugin"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(build.getValue("kotlinGradlePlugin"))
|
|
implementation(build.getValue("androidGradlePlugin"))
|
|
implementation(build.getValue("binaryCompatibilityValidator"))
|
|
}
|