Skip to content

Commit

Permalink
Update more dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
mopsalarm committed Mar 1, 2022
1 parent 1d79c2e commit b73bca1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:7.1.0'
classpath 'com.android.tools.build:gradle:7.1.2'
}
}

plugins {
id "org.jetbrains.kotlin.android" version "1.6.10" apply false
id "org.jetbrains.kotlin.kapt" version "1.6.10" apply false
id "com.github.ben-manes.versions" version "0.41.0"
id "com.github.ben-manes.versions" version "0.42.0"
}

dependencyUpdates.resolutionStrategy {
componentSelection { rules ->
rules.all { ComponentSelection selection ->
boolean rejected = ['alpha', 'beta', 'rc', 'cr'].any { qualifier ->
selection.candidate.version.contains(qualifier)
boolean rejected = ['alpha', 'beta', 'rc', 'cr', '-m'].any { qualifier ->
selection.candidate.version.toLowerCase().contains(qualifier)
}

if (rejected) {
Expand Down
2 changes: 1 addition & 1 deletion model/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {

dependencies {
classpath 'com.squareup.sqldelight:gradle-plugin:1.5.3'
classpath 'com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:1.6.10-1.0.2'
classpath 'com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:1.6.10-1.0.4'
}
}

Expand Down

0 comments on commit b73bca1

Please sign in to comment.