2021-11-29 01:41:24 +05:30
|
|
|
/*
|
|
|
|
* 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 11:27:44 +05:30
|
|
|
|
2021-11-29 02:23:06 +05:30
|
|
|
gradlePlugin {
|
|
|
|
plugins {
|
|
|
|
register("versioning") {
|
|
|
|
id = "com.github.android-password-store.versioning-plugin"
|
|
|
|
implementationClass = "versioning.VersioningPlugin"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(libs.build.agp)
|
2021-12-11 00:12:54 +05:30
|
|
|
implementation(libs.build.dokka)
|
|
|
|
implementation(libs.build.mavenpublish)
|
2021-11-29 02:23:06 +05:30
|
|
|
implementation(libs.build.semver)
|
|
|
|
}
|