cleaning up dependency entries
This commit is contained in:
parent
21be4a4b1d
commit
77bdfb4cd3
|
@ -89,5 +89,5 @@ dependencies {
|
||||||
implementation Dependencies.mavenCentral.matrixOlm
|
implementation Dependencies.mavenCentral.matrixOlm
|
||||||
|
|
||||||
implementation Dependencies.mavenCentral.kotlinSerializationJson
|
implementation Dependencies.mavenCentral.kotlinSerializationJson
|
||||||
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.9.1'
|
debugImplementation Dependencies.mavenCentral.leakCanary
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,6 +7,6 @@ dependencies {
|
||||||
implementation Dependencies.mavenCentral.kotlinCoroutinesCore
|
implementation Dependencies.mavenCentral.kotlinCoroutinesCore
|
||||||
testFixturesImplementation Dependencies.mavenCentral.kotlinCoroutinesCore
|
testFixturesImplementation Dependencies.mavenCentral.kotlinCoroutinesCore
|
||||||
testFixturesImplementation Dependencies.mavenCentral.kluent
|
testFixturesImplementation Dependencies.mavenCentral.kluent
|
||||||
testFixturesImplementation 'io.mockk:mockk:1.12.3'
|
testFixturesImplementation Dependencies.mavenCentral.mockk
|
||||||
testFixturesImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.1'
|
testFixturesImplementation Dependencies.mavenCentral.kotlinCoroutinesTest
|
||||||
}
|
}
|
|
@ -111,20 +111,27 @@ ext.Dependencies.with {
|
||||||
kotlinSerializationGradlePlugin = "org.jetbrains.kotlin:kotlin-serialization:${kotlinVer}"
|
kotlinSerializationGradlePlugin = "org.jetbrains.kotlin:kotlin-serialization:${kotlinVer}"
|
||||||
kotlinSerializationJson = "org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2"
|
kotlinSerializationJson = "org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2"
|
||||||
kotlinCoroutinesCore = "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1"
|
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}"
|
kotlinTest = "org.jetbrains.kotlin:kotlin-test-junit:${kotlinVer}"
|
||||||
|
|
||||||
sqldelightGradlePlugin = "com.squareup.sqldelight:gradle-plugin:${sqldelightVer}"
|
sqldelightGradlePlugin = "com.squareup.sqldelight:gradle-plugin:${sqldelightVer}"
|
||||||
sqldelightAndroid = "com.squareup.sqldelight:android-driver:${sqldelightVer}"
|
sqldelightAndroid = "com.squareup.sqldelight:android-driver:${sqldelightVer}"
|
||||||
sqldelightInMemory = "com.squareup.sqldelight:sqlite-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}"
|
ktorAndroid = "io.ktor:ktor-client-android:${ktorVer}"
|
||||||
ktorCore = "io.ktor:ktor-client-core:${ktorVer}"
|
ktorCore = "io.ktor:ktor-client-core:${ktorVer}"
|
||||||
ktorSerialization = "io.ktor:ktor-client-serialization:${ktorVer}"
|
ktorSerialization = "io.ktor:ktor-client-serialization:${ktorVer}"
|
||||||
ktorLogging = "io.ktor:ktor-client-logging-jvm:${ktorVer}"
|
ktorLogging = "io.ktor:ktor-client-logging-jvm:${ktorVer}"
|
||||||
ktorJava = "io.ktor:ktor-client-java:${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"
|
junit = "junit:junit:4.13.2"
|
||||||
kluent = "org.amshove.kluent:kluent:1.68"
|
kluent = "org.amshove.kluent:kluent:1.68"
|
||||||
|
mockk = 'io.mockk:mockk:1.12.3'
|
||||||
|
|
||||||
matrixOlm = "org.matrix.android:olm-sdk:3.2.10"
|
matrixOlm = "org.matrix.android:olm-sdk:3.2.10"
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,6 @@ applyAndroidLibraryModule(project)
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(":core")
|
implementation project(":core")
|
||||||
implementation("io.coil-kt:coil-compose:1.4.0")
|
implementation Dependencies.mavenCentral.coil
|
||||||
implementation "com.google.accompanist:accompanist-systemuicontroller:0.24.7-alpha"
|
implementation Dependencies.mavenCentral.accompanistSystemuicontroller
|
||||||
}
|
}
|
|
@ -2,5 +2,5 @@ applyAndroidLibraryModule(project)
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(":core")
|
implementation project(":core")
|
||||||
implementation "io.coil-kt:coil:1.4.0"
|
implementation Dependencies.mavenCentral.coil
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,7 @@ dependencies {
|
||||||
|
|
||||||
kotlinFixtures(it)
|
kotlinFixtures(it)
|
||||||
testFixturesImplementation Dependencies.mavenCentral.kotlinCoroutinesCore
|
testFixturesImplementation Dependencies.mavenCentral.kotlinCoroutinesCore
|
||||||
testFixturesImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.1'
|
testFixturesImplementation Dependencies.mavenCentral.kotlinCoroutinesTest
|
||||||
testFixturesImplementation testFixtures(project(":core"))
|
testFixturesImplementation testFixtures(project(":core"))
|
||||||
testFixturesCompileOnly project(":domains:android:viewmodel-stub")
|
testFixturesCompileOnly project(":domains:android:viewmodel-stub")
|
||||||
}
|
}
|
|
@ -9,7 +9,7 @@ dependencies {
|
||||||
implementation project(":features:messenger")
|
implementation project(":features:messenger")
|
||||||
implementation project(":core")
|
implementation project(":core")
|
||||||
implementation project(":design-library")
|
implementation project(":design-library")
|
||||||
implementation("io.coil-kt:coil-compose:1.4.0")
|
implementation Dependencies.mavenCentral.coil
|
||||||
|
|
||||||
kotlinTest(it)
|
kotlinTest(it)
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ dependencies {
|
||||||
implementation project(":core")
|
implementation project(":core")
|
||||||
implementation project(":features:navigator")
|
implementation project(":features:navigator")
|
||||||
implementation project(":design-library")
|
implementation project(":design-library")
|
||||||
implementation("io.coil-kt:coil-compose:1.4.0")
|
implementation Dependencies.mavenCentral.coil
|
||||||
|
|
||||||
kotlinTest(it)
|
kotlinTest(it)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue