blob: 2375262a1d8a1a1b05671bb497b5d4dfb6bb36b8 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* 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`
}
gradlePlugin {
plugins {
register("crowdin") {
id = "com.github.android-password-store.crowdin-plugin"
implementationClass = "crowdin.CrowdinDownloadPlugin"
}
register("psl") {
id = "com.github.android-password-store.psl-plugin"
implementationClass = "psl.PublicSuffixListPlugin"
}
}
}
dependencies {
implementation(libs.build.download)
implementation(libs.build.okhttp)
}
|