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-03-20 07:39:52 +00:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
2021-04-12 12:08:06 +00:00
|
|
|
id("com.ncorti.ktfmt.gradle") version "0.5.0"
|
2021-03-20 07:39:52 +00:00
|
|
|
}
|
2020-07-23 09:09:36 +00:00
|
|
|
|
|
|
|
repositories {
|
2021-03-09 09:23:11 +00:00
|
|
|
google()
|
|
|
|
gradlePluginPortal()
|
|
|
|
mavenCentral()
|
2020-07-23 09:09:36 +00:00
|
|
|
}
|
|
|
|
|
2021-03-20 07:39:52 +00:00
|
|
|
ktfmt {
|
|
|
|
googleStyle()
|
|
|
|
maxWidth.set(120)
|
|
|
|
}
|
|
|
|
|
2020-10-16 15:18:11 +00:00
|
|
|
gradlePlugin {
|
2021-03-09 09:23:11 +00:00
|
|
|
plugins {
|
|
|
|
register("aps") {
|
|
|
|
id = "aps-plugin"
|
|
|
|
implementationClass = "PasswordStorePlugin"
|
|
|
|
}
|
|
|
|
register("crowdin") {
|
|
|
|
id = "crowdin-plugin"
|
|
|
|
implementationClass = "CrowdinDownloadPlugin"
|
|
|
|
}
|
|
|
|
register("versioning") {
|
|
|
|
id = "versioning-plugin"
|
|
|
|
implementationClass = "VersioningPlugin"
|
2020-10-16 15:18:11 +00:00
|
|
|
}
|
2021-03-09 09:23:11 +00:00
|
|
|
}
|
2020-10-16 15:18:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-04-16 11:05:27 +00:00
|
|
|
implementation("com.android.tools.build:gradle:4.1.3")
|
2021-04-16 11:36:04 +00:00
|
|
|
implementation("org.jetbrains.kotlinx:binary-compatibility-validator:0.5.0")
|
2021-04-16 11:05:27 +00:00
|
|
|
implementation("org.jetbrains.dokka:dokka-gradle-plugin:1.4.30")
|
|
|
|
implementation("de.undercouch:gradle-download-task:4.1.1")
|
2021-04-28 04:57:14 +00:00
|
|
|
implementation("com.google.dagger:hilt-android-gradle-plugin:2.35.1")
|
|
|
|
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.0")
|
2021-04-16 11:05:27 +00:00
|
|
|
implementation("com.ncorti.ktfmt.gradle:plugin:0.5.0")
|
|
|
|
implementation("com.vanniktech:gradle-maven-publish-plugin:0.13.0")
|
2021-05-02 02:06:18 +00:00
|
|
|
implementation("com.squareup.okhttp3:okhttp:4.9.0")
|
2021-04-16 11:05:27 +00:00
|
|
|
implementation("com.vdurmont:semver4j:3.1.0")
|
2020-10-16 15:18:11 +00:00
|
|
|
}
|