mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-07 16:09:38 +02:00
* build: remove now migrated indirect dependencies from JCenter Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * build: update Gradle 6.8.3 Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * build: set explicit inclusions for Jitpack Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
18 lines
463 B
Text
18 lines
463 B
Text
/*
|
|
* Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved.
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
plugins {
|
|
`binary-compatibility-validator`
|
|
`aps-plugin`
|
|
}
|
|
|
|
subprojects {
|
|
configurations.all {
|
|
resolutionStrategy.dependencySubstitution {
|
|
substitute(module("org.jetbrains.trove4j:trove4j:20160824"))
|
|
.using(module("org.jetbrains.intellij.deps:trove4j:1.0.20200330"))
|
|
}
|
|
}
|
|
}
|