7a80be7732
While we're here, also clarify we're strictly GPL-3.0 and not automatically opting into future revisions of the license. Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
53 lines
1.2 KiB
Text
53 lines
1.2 KiB
Text
/*
|
|
* Copyright © 2014-2019 The Android Password Store Authors. All Rights Reserved.
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:3.5.0")
|
|
classpath(kotlin("gradle-plugin", "1.3.50"))
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("com.github.ben-manes.versions") version "0.24.0"
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
tasks {
|
|
named<DependencyUpdatesTask>("dependencyUpdates") {
|
|
resolutionStrategy {
|
|
componentSelection {
|
|
all {
|
|
if (listOf("commons-io", "org.eclipse.jgit").contains(candidate.group)) {
|
|
reject("Blacklisted package")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
checkForGradleUpdate = true
|
|
outputFormatter = "json"
|
|
outputDir = "build/dependencyUpdates"
|
|
reportfileName = "report"
|
|
}
|
|
|
|
named<Wrapper>("wrapper") {
|
|
gradleVersion = "5.6.2"
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
}
|
|
}
|
|
|
|
configureSpotless()
|