summaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts5
1 files changed, 3 insertions, 2 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index dc9ef005..a82668b8 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -7,7 +7,7 @@ buildscript {
mavenCentral()
}
dependencies {
- classpath("com.android.tools.build:gradle:3.3.1")
+ classpath("com.android.tools.build:gradle:3.3.2")
classpath(kotlin("gradle-plugin", "1.3.21"))
}
}
@@ -28,9 +28,10 @@ tasks.named<DependencyUpdatesTask>("dependencyUpdates") {
resolutionStrategy {
componentSelection {
all {
+ val blacklistedGroups = listOf("com.nononsenseapps", "commons-io", "org.eclipse.jgit")
val rejected = listOf("alpha", "beta", "rc", "cr", "m", "preview")
.map { qualifier -> Regex("(?i).*[.-]$qualifier[.\\d-]*") }
- .any { it.matches(candidate.version) }
+ .any { it.matches(candidate.version) && blacklistedGroups.contains(candidate.group) }
if (rejected) {
reject("Release candidate")
}