2020-07-23 09:09:36 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved.
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
*/
|
|
|
|
plugins {
|
2020-10-16 15:18:11 +00:00
|
|
|
`binary-compatibility-validator`
|
|
|
|
`aps-plugin`
|
2020-07-23 09:09:36 +00:00
|
|
|
}
|
2021-03-16 19:04:13 +00:00
|
|
|
|
2021-03-09 09:11:51 +00:00
|
|
|
buildscript {
|
|
|
|
dependencies {
|
|
|
|
classpath(Plugins.ktfmtGradlePlugin)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
apply(plugin = "com.ncorti.ktfmt.gradle")
|
|
|
|
}
|
|
|
|
|
2021-03-16 19:04:13 +00:00
|
|
|
subprojects {
|
|
|
|
configurations.all {
|
|
|
|
resolutionStrategy.dependencySubstitution {
|
|
|
|
substitute(module("org.jetbrains.trove4j:trove4j:20160824"))
|
|
|
|
.using(module("org.jetbrains.intellij.deps:trove4j:1.0.20200330"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|