cleaning up dependency entries

This commit is contained in:
Adam Brown 2022-04-25 23:09:35 +01:00
parent 21be4a4b1d
commit 77bdfb4cd3
8 changed files with 16 additions and 9 deletions

View File

@ -89,5 +89,5 @@ dependencies {
implementation Dependencies.mavenCentral.matrixOlm
implementation Dependencies.mavenCentral.kotlinSerializationJson
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.9.1'
debugImplementation Dependencies.mavenCentral.leakCanary
}

View File

@ -7,6 +7,6 @@ dependencies {
implementation Dependencies.mavenCentral.kotlinCoroutinesCore
testFixturesImplementation Dependencies.mavenCentral.kotlinCoroutinesCore
testFixturesImplementation Dependencies.mavenCentral.kluent
testFixturesImplementation 'io.mockk:mockk:1.12.3'
testFixturesImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.1'
testFixturesImplementation Dependencies.mavenCentral.mockk
testFixturesImplementation Dependencies.mavenCentral.kotlinCoroutinesTest
}

View File

@ -111,20 +111,27 @@ ext.Dependencies.with {
kotlinSerializationGradlePlugin = "org.jetbrains.kotlin:kotlin-serialization:${kotlinVer}"
kotlinSerializationJson = "org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2"
kotlinCoroutinesCore = "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1"
kotlinCoroutinesTest = 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.1'
kotlinTest = "org.jetbrains.kotlin:kotlin-test-junit:${kotlinVer}"
sqldelightGradlePlugin = "com.squareup.sqldelight:gradle-plugin:${sqldelightVer}"
sqldelightAndroid = "com.squareup.sqldelight:android-driver:${sqldelightVer}"
sqldelightInMemory = "com.squareup.sqldelight:sqlite-driver:${sqldelightVer}"
leakCanary = 'com.squareup.leakcanary:leakcanary-android:2.9.1'
ktorAndroid = "io.ktor:ktor-client-android:${ktorVer}"
ktorCore = "io.ktor:ktor-client-core:${ktorVer}"
ktorSerialization = "io.ktor:ktor-client-serialization:${ktorVer}"
ktorLogging = "io.ktor:ktor-client-logging-jvm:${ktorVer}"
ktorJava = "io.ktor:ktor-client-java:${ktorVer}"
coil = "io.coil-kt:coil-compose:1.4.0"
accompanistSystemuicontroller = "com.google.accompanist:accompanist-systemuicontroller:0.24.7-alpha"
junit = "junit:junit:4.13.2"
kluent = "org.amshove.kluent:kluent:1.68"
mockk = 'io.mockk:mockk:1.12.3'
matrixOlm = "org.matrix.android:olm-sdk:3.2.10"
}

View File

@ -2,6 +2,6 @@ applyAndroidLibraryModule(project)
dependencies {
implementation project(":core")
implementation("io.coil-kt:coil-compose:1.4.0")
implementation "com.google.accompanist:accompanist-systemuicontroller:0.24.7-alpha"
implementation Dependencies.mavenCentral.coil
implementation Dependencies.mavenCentral.accompanistSystemuicontroller
}

View File

@ -2,5 +2,5 @@ applyAndroidLibraryModule(project)
dependencies {
implementation project(":core")
implementation "io.coil-kt:coil:1.4.0"
implementation Dependencies.mavenCentral.coil
}

View File

@ -9,7 +9,7 @@ dependencies {
kotlinFixtures(it)
testFixturesImplementation Dependencies.mavenCentral.kotlinCoroutinesCore
testFixturesImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.1'
testFixturesImplementation Dependencies.mavenCentral.kotlinCoroutinesTest
testFixturesImplementation testFixtures(project(":core"))
testFixturesCompileOnly project(":domains:android:viewmodel-stub")
}

View File

@ -9,7 +9,7 @@ dependencies {
implementation project(":features:messenger")
implementation project(":core")
implementation project(":design-library")
implementation("io.coil-kt:coil-compose:1.4.0")
implementation Dependencies.mavenCentral.coil
kotlinTest(it)

View File

@ -10,7 +10,7 @@ dependencies {
implementation project(":core")
implementation project(":features:navigator")
implementation project(":design-library")
implementation("io.coil-kt:coil-compose:1.4.0")
implementation Dependencies.mavenCentral.coil
kotlinTest(it)