2019-10-02 12:41:22 +00:00
|
|
|
/*
|
2021-03-09 09:15:27 +00:00
|
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
2019-10-02 14:40:07 +00:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
2019-10-02 12:41:22 +00:00
|
|
|
*/
|
2021-03-09 09:23:11 +00:00
|
|
|
|
2021-04-16 15:38:51 +00:00
|
|
|
// Plugin repositories
|
2020-09-20 11:24:38 +00:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
2021-11-28 20:11:04 +00:00
|
|
|
includeBuild("build-logic")
|
|
|
|
google()
|
2021-10-09 07:43:14 +00:00
|
|
|
mavenCentral()
|
2020-09-20 11:24:38 +00:00
|
|
|
gradlePluginPortal()
|
2021-10-09 07:43:14 +00:00
|
|
|
}
|
2021-11-29 20:07:42 +00:00
|
|
|
plugins {
|
|
|
|
id("com.vanniktech.maven.publish") version "0.18.0" apply false
|
|
|
|
id("org.jetbrains.dokka") version "1.6.0" apply false
|
|
|
|
}
|
2021-10-09 07:43:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
repositories {
|
2021-02-06 12:04:17 +00:00
|
|
|
mavenCentral()
|
2021-10-09 07:43:14 +00:00
|
|
|
google()
|
|
|
|
maven("https://jitpack.io") {
|
|
|
|
name = "JitPack"
|
|
|
|
content {
|
|
|
|
includeModule("com.github.haroldadmin", "WhatTheStack")
|
|
|
|
includeModule("com.github.open-keychain.open-keychain", "sshauthentication-api")
|
|
|
|
}
|
|
|
|
}
|
2020-09-20 11:24:38 +00:00
|
|
|
}
|
|
|
|
}
|
2021-11-28 20:11:04 +00:00
|
|
|
|
|
|
|
// Experimental features
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
|
|
|
|
enableFeaturePreview("VERSION_CATALOGS")
|
|
|
|
|
|
|
|
// Modules
|
|
|
|
include("app")
|
|
|
|
|
|
|
|
include("autofill-parser")
|
|
|
|
|
2021-12-09 04:37:54 +00:00
|
|
|
include("coroutine-utils")
|
|
|
|
|
|
|
|
include("coroutine-utils-testing")
|
|
|
|
|
2021-11-28 20:11:04 +00:00
|
|
|
include("crypto-common")
|
|
|
|
|
|
|
|
include("crypto-pgpainless")
|
|
|
|
|
|
|
|
include("format-common")
|
|
|
|
|
|
|
|
include("openpgp-ktx")
|
|
|
|
|
2021-12-09 04:37:54 +00:00
|
|
|
include("dependency-sync")
|