Skip to content

Commit

Permalink
Collapse cloud backend structure (#368)
Browse files Browse the repository at this point in the history
Co-authored-by: Davies Ashley <[email protected]>
  • Loading branch information
ashdavies and ashdavies authored Jul 9, 2023
1 parent b1f0173 commit 632ca51
Show file tree
Hide file tree
Showing 76 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion app-check/app-check-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ kotlin {
with(projects) {
implementation(appCheck.appCheckCommon)
implementation(firebaseCompose)
implementation(cloudBackend.httpClient)
implementation(httpClient)
}

with(libs.ktor.client) {
Expand Down
2 changes: 1 addition & 1 deletion app-check/app-check-sdk/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies {
api(projects.appCheck.appCheckCommon)
api(libs.ktor.client.core)

implementation(projects.cloudBackend.httpClient)
implementation(projects.httpClient)

implementation(libs.auth.java.jwt)
implementation(libs.auth.jwks.rsa)
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ kotlin {
jvmMain.dependencies {
with(projects) {
implementation(appCheck.appCheckSdk)
implementation(cloudBackend.cloudFirestore)
implementation(cloudFirestore)
implementation(composeLocals)
implementation(httpClient)
implementation(eventsAggregator)
implementation(cloudBackend.httpClient)
implementation(localStorage)
}

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion dominion-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
kotlin {
commonMain.dependencies {
implementation(projects.appCheck.appCheckClient)
implementation(projects.cloudBackend.httpClient)
implementation(projects.httpClient)
implementation(projects.imageLoader)

implementation(libs.arkivanov.parcelable)
Expand Down
4 changes: 2 additions & 2 deletions events-aggregator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ plugins {
}

dependencies {
implementation(projects.cloudBackend.cloudFirestore)
implementation(projects.cloudBackend.microYaml)
implementation(projects.cloudFirestore)
implementation(projects.localStorage)
implementation(projects.microYaml)

testImplementation(libs.ktor.client.core)
}
2 changes: 1 addition & 1 deletion events-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ kotlin {
with(projects) {
implementation(appCheck.appCheckClient)
implementation(composeLocals)
implementation(cloudBackend.httpClient)
implementation(httpClient)
implementation(imageLoader)
implementation(localStorage)
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion image-loader/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {

kotlin {
commonMain.dependencies {
implementation(projects.cloudBackend.httpClient)
implementation(projects.httpClient)
implementation(libs.ktor.client.core)
}
}
File renamed without changes.
2 changes: 1 addition & 1 deletion ratings-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
kotlin {
commonMain.dependencies {
with(projects) {
implementation(cloudBackend.httpClient)
implementation(httpClient)
implementation(imageLoader)
implementation(notionClient)
}
Expand Down
10 changes: 5 additions & 5 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@ include(
":app-launcher:android",
":app-launcher:common",
":app-launcher:desktop",
":cloud-backend:cloud-firestore",
":cloud-backend:cloud-run",
":cloud-backend:google-cloud",
":cloud-backend:http-client",
":cloud-backend:micro-yaml",
":cloud-firestore",
":cloud-run",
":compose-locals",
":dominion-app",
":events-aggregator",
":events-app",
":firebase-compose",
":google-cloud",
":http-client",
":image-loader",
":local-storage",
":micro-yaml",
":notion-client",
":notion-console",
":parcelable-support",
Expand Down

0 comments on commit 632ca51

Please sign in to comment.