Android-Password-Store/build.gradle.kts
Harsh Shandilya 774fda83ac
all: reformat with ktfmt
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2021-03-18 11:40:30 +05:30

21 lines
563 B
Text

/*
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
* SPDX-License-Identifier: GPL-3.0-only
*/
plugins {
`binary-compatibility-validator`
`aps-plugin`
}
buildscript { dependencies { classpath(Plugins.ktfmtGradlePlugin) } }
allprojects { apply(plugin = "com.ncorti.ktfmt.gradle") }
subprojects {
configurations.all {
resolutionStrategy.dependencySubstitution {
substitute(module("org.jetbrains.trove4j:trove4j:20160824"))
.using(module("org.jetbrains.intellij.deps:trove4j:1.0.20200330"))
}
}
}