Skip to content

Commit

Permalink
Move html-cleaner from app namspace to library to better reflect it…
Browse files Browse the repository at this point in the history
…'s purpose
  • Loading branch information
wmontwe committed Feb 23, 2024
1 parent 435300e commit 8b41108
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
dependencies {
api(projects.mail.common)
api(projects.backend.api)
api(projects.app.htmlCleaner)
api(projects.library.htmlCleaner)
api(projects.core.android.common)

implementation(projects.plugins.openpgpApiLib.openpgpApi)
Expand Down
2 changes: 1 addition & 1 deletion cli/html-cleaner-cli/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ application {
}

dependencies {
implementation(projects.app.htmlCleaner)
implementation(projects.library.htmlCleaner)

implementation(libs.clikt)
implementation(libs.okio)
Expand Down
File renamed without changes.
5 changes: 4 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ include(
":app:storage",
":app:crypto-openpgp",
":app:testing",
":app:html-cleaner",
)

include(
Expand Down Expand Up @@ -110,3 +109,7 @@ include(
":cli:html-cleaner-cli",
":cli:translation-cli",
)

include(
":library:html-cleaner",
)

0 comments on commit 8b41108

Please sign in to comment.