2021-11-28 20:11:24 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
|
|
|
`kotlin-dsl-precompiled-script-plugins`
|
|
|
|
}
|
2021-11-14 05:57:44 +00:00
|
|
|
|
2021-11-28 20:53:06 +00:00
|
|
|
gradlePlugin {
|
|
|
|
plugins {
|
|
|
|
register("versioning") {
|
|
|
|
id = "com.github.android-password-store.versioning-plugin"
|
|
|
|
implementationClass = "versioning.VersioningPlugin"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(libs.build.agp)
|
|
|
|
implementation(libs.build.semver)
|
|
|
|
}
|