Update to the latest Gradle nightly

pull/1445/head
Sterling Greene 1 year ago
parent ed58837e91
commit 884f9f4099

@ -5,18 +5,18 @@ androidLibrary {
configureJacoco = true configureJacoco = true
dependencies { dependencies {
api(projects.core.common) api(project(":core:common"))
api(projects.core.database) api(project(":core:database"))
api(projects.core.datastore) api(project(":core:datastore"))
api(projects.core.network) api(project(":core:network"))
implementation(projects.core.analytics) implementation(project(":core:analytics"))
implementation(projects.core.notifications) implementation(project(":core:notifications"))
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3") testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3")
testImplementation(projects.core.datastoreTest) testImplementation(project(":core:datastore-test"))
testImplementation(projects.core.testing) testImplementation(project(":core:testing"))
testImplementation(projects.core.network) testImplementation(project(":core:network"))
} }
testOptions { testOptions {

@ -6,10 +6,10 @@ androidLibrary {
dependencies { dependencies {
implementation("javax.inject:javax.inject:1") implementation("javax.inject:javax.inject:1")
api(projects.core.data) api(project(":core:data"))
api(projects.core.model) api(project(":core:model"))
testImplementation(projects.core.testing) testImplementation(project(":core:testing"))
} }
buildTypes { buildTypes {

@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-8.9-20240425000222+0000-bin.zip distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-8.9-20240425125209+0000-bin.zip
networkTimeout=10000 networkTimeout=10000
validateDistributionUrl=true validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME

Loading…
Cancel
Save