2021-03-09 09:15:27 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2021-05-07 10:57:55 +00:00
|
|
|
plugins { `kotlin-dsl` }
|
2020-07-23 09:09:36 +00:00
|
|
|
|
|
|
|
repositories {
|
2021-02-06 12:04:17 +00:00
|
|
|
mavenCentral()
|
2021-10-09 07:43:14 +00:00
|
|
|
gradlePluginPortal()
|
|
|
|
google()
|
2020-07-23 09:09:36 +00:00
|
|
|
}
|
|
|
|
|
2020-10-16 15:18:11 +00:00
|
|
|
gradlePlugin {
|
|
|
|
plugins {
|
|
|
|
register("aps") {
|
|
|
|
id = "aps-plugin"
|
|
|
|
implementationClass = "PasswordStorePlugin"
|
|
|
|
}
|
2020-12-30 10:06:51 +00:00
|
|
|
register("crowdin") {
|
|
|
|
id = "crowdin-plugin"
|
|
|
|
implementationClass = "CrowdinDownloadPlugin"
|
|
|
|
}
|
2021-01-20 14:57:04 +00:00
|
|
|
register("versioning") {
|
|
|
|
id = "versioning-plugin"
|
|
|
|
implementationClass = "VersioningPlugin"
|
2020-10-16 15:18:11 +00:00
|
|
|
}
|
2021-07-29 15:53:59 +00:00
|
|
|
register("psl") {
|
|
|
|
id = "psl-plugin"
|
|
|
|
implementationClass = "PublicSuffixListPlugin"
|
|
|
|
}
|
2021-03-09 09:23:11 +00:00
|
|
|
}
|
2020-10-16 15:18:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-11-08 05:24:01 +00:00
|
|
|
implementation("com.android.tools.build:gradle:7.0.3")
|
2021-12-02 19:09:54 +00:00
|
|
|
implementation("com.google.dagger:hilt-android-gradle-plugin:2.40.3")
|
2021-05-07 10:57:55 +00:00
|
|
|
implementation("com.squareup.okhttp3:okhttp:4.9.0")
|
2021-10-09 07:43:14 +00:00
|
|
|
implementation("com.vanniktech:gradle-maven-publish-plugin:0.18.0")
|
2021-04-16 11:05:27 +00:00
|
|
|
implementation("com.vdurmont:semver4j:3.1.0")
|
2021-07-21 19:39:23 +00:00
|
|
|
implementation("de.undercouch:gradle-download-task:4.1.2")
|
2021-12-02 19:09:54 +00:00
|
|
|
implementation("org.jetbrains.dokka:dokka-gradle-plugin:1.6.0")
|
|
|
|
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0")
|
2020-10-16 15:18:11 +00:00
|
|
|
}
|