Bladeren bron

Chore: remove dependencies update detect plugin

kr328 4 jaren geleden
bovenliggende
commit
db2a7feb34
2 gewijzigde bestanden met toevoegingen van 0 en 18 verwijderingen
  1. 0 16
      build.gradle.kts
  2. 0 2
      settings.gradle.kts

+ 0 - 16
build.gradle.kts

@@ -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()

+ 0 - 2
settings.gradle.kts

@@ -14,7 +14,6 @@ include(":hideapi")
 dependencyResolutionManagement {
     versionCatalogs {
         create("deps") {
-            val version = "0.39.0"
             val agp = "7.0.2"
             val ksp = "1.5.30-1.0.0"
             val kotlin = "1.5.30"
@@ -34,7 +33,6 @@ dependencyResolutionManagement {
             val room = "2.3.0"
             val multiprocess = "1.0.0"
 
-            alias("build-update").to("com.github.ben-manes:gradle-versions-plugin:$version")
             alias("build-android").to("com.android.tools.build:gradle:$agp")
             alias("build-kotlin-common").to("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin")
             alias("build-kotlin-serialization").to("org.jetbrains.kotlin:kotlin-serialization:$kotlin")