diff options
| author | Albin <albin@mullvad.net> | 2023-08-04 11:22:23 +0200 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2023-08-04 17:16:07 +0200 |
| commit | 55a1e45bc3e7eb4ef8b9a058343c84ae38b45b20 (patch) | |
| tree | 2bda9f2d42a05c95319f41c1937b1768533bd113 | |
| parent | 2f6f85c086a5eb94cb3a6e172830a34fe25cbef8 (diff) | |
| download | mullvadvpn-55a1e45bc3e7eb4ef8b9a058343c84ae38b45b20.tar.xz mullvadvpn-55a1e45bc3e7eb4ef8b9a058343c84ae38b45b20.zip | |
Fix gradle-versions-plugin configuration
| -rw-r--r-- | android/build.gradle.kts | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/android/build.gradle.kts b/android/build.gradle.kts index bedbc0610f..b9ff70a359 100644 --- a/android/build.gradle.kts +++ b/android/build.gradle.kts @@ -49,14 +49,9 @@ allprojects { } tasks.withType<DependencyUpdatesTask> { - resolutionStrategy { - componentSelection { - all { - if (candidate.version.isNonStableVersion()) { - reject("Non-stable version.") - } - } - } + gradleReleaseChannel = "current" + rejectVersionIf { + candidate.version.isNonStableVersion() } } |
