6c1e41ba10
* release: move scripts to scripts directory Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * Move CI secrets to secrets directory Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * gradle: uprev to 6.7 Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * gradle: suppress warnings about unsupported options Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * build: update dependencies Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * build: move Gradle plugins to ext Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * build: move configuration tasks to buildSrc Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * CHANGELOG: add entry for #1137 Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * Fix lint warnings Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
25 lines
740 B
Text
25 lines
740 B
Text
/*
|
|
* 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.33.0"
|
|
`binary-compatibility-validator`
|
|
`aps-plugin`
|
|
}
|