aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
blob: 6e57ce2e6fb1910f8116ea77373851f4ba0dfe09 (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-2020 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"))
        }
    }
}