Chore: remove dependencies update detect plugin

This commit is contained in:
kr328
2021-09-13 22:41:19 +08:00
parent 8b91b2eeb1
commit db2a7feb34
2 changed files with 0 additions and 18 deletions

View File

@@ -1,20 +1,16 @@
@file:Suppress("UNUSED_VARIABLE")
import com.android.build.gradle.BaseExtension
import com.github.benmanes.gradle.versions.VersionsPlugin
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
import java.net.URL
import java.util.*
buildscript {
repositories {
gradlePluginPortal()
mavenCentral()
google()
maven("https://maven.kr328.app/releases")
}
dependencies {
classpath(deps.build.update)
classpath(deps.build.android)
classpath(deps.build.kotlin.common)
classpath(deps.build.kotlin.serialization)
@@ -24,18 +20,6 @@ buildscript {
}
allprojects {
apply {
plugin(VersionsPlugin::class)
}
tasks.withType(DependencyUpdatesTask::class) {
val rejectPattern = Regex("(beta|alpha)", RegexOption.IGNORE_CASE)
rejectVersionIf {
candidate.version.contains(rejectPattern)
}
}
repositories {
mavenCentral()
google()