diff options
| author | Albin <albin@mullvad.net> | 2024-08-12 18:27:24 +0200 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2024-08-13 09:32:06 +0200 |
| commit | 2d2d41381419230f4d6b538509f03abc2cb034af (patch) | |
| tree | 0b6fe23b53c78c183f853aeb9ea4e122b757d15b /android/test/arch | |
| parent | acd9d481f80c52cc8f9389e6ba2a8ad25599b200 (diff) | |
| download | mullvadvpn-2d2d41381419230f4d6b538509f03abc2cb034af.tar.xz mullvadvpn-2d2d41381419230f4d6b538509f03abc2cb034af.zip | |
Migrate to version catalogs
Diffstat (limited to 'android/test/arch')
| -rw-r--r-- | android/test/arch/build.gradle.kts | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/android/test/arch/build.gradle.kts b/android/test/arch/build.gradle.kts index d2debc07dd..01922ac2de 100644 --- a/android/test/arch/build.gradle.kts +++ b/android/test/arch/build.gradle.kts @@ -1,14 +1,15 @@ plugins { - id(Dependencies.Plugin.androidLibraryId) - id(Dependencies.Plugin.kotlinAndroidId) - id(Dependencies.Plugin.junit5) version Versions.Plugin.junit5 + alias(libs.plugins.android.library) + alias(libs.plugins.kotlin.android) + + id(Dependencies.junit5AndroidPluginId) version Versions.junit5Plugin } android { namespace = "net.mullvad.mullvadvpn.test.arch" - compileSdk = Versions.Android.compileSdkVersion + compileSdk = Versions.compileSdkVersion - defaultConfig { minSdk = Versions.Android.minSdkVersion } + defaultConfig { minSdk = Versions.minSdkVersion } compileOptions { sourceCompatibility = JavaVersion.VERSION_17 @@ -29,11 +30,11 @@ androidComponents { } dependencies { - testRuntimeOnly(Dependencies.junitEngine) + testRuntimeOnly(Dependencies.junitJupiterEngine) - testImplementation(Dependencies.Compose.uiToolingAndroidPreview) - testImplementation(Dependencies.Compose.destinations) - testImplementation(Dependencies.AndroidX.appcompat) - testImplementation(Dependencies.junitApi) - testImplementation(Dependencies.konsist) + testImplementation(libs.compose.ui.tooling.android.preview) + testImplementation(libs.compose.destinations) + testImplementation(libs.androidx.appcompat) + testImplementation(Dependencies.junitJupiterApi) + testImplementation(libs.konsist) } |
