aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
blob: 60abc6aa2b38509a81432f83e830aa00a3e7f243 (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
/*
 * Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved.
 * SPDX-License-Identifier: GPL-3.0-only
 */
buildscript {
    apply(from = "buildSrc/buildDependencies.gradle")
    val build: Map<Any, Any> by extra
    repositories {
        google()
        jcenter()
        // For binary compatibility validator.
        maven { url = uri("https://kotlin.bintray.com/kotlinx") }
    }
    dependencies {
        classpath(build.getValue("androidGradlePlugin"))
        classpath(build.getValue("binaryCompatibilityValidator"))
        classpath(build.getValue("kotlinGradlePlugin"))
    }
}

plugins {
    id("com.github.ben-manes.versions") version "0.34.0"
    `binary-compatibility-validator`
    `aps-plugin`
}