Move html-cleaner
from app namspace to library to better reflect it's purpose
This commit is contained in:
parent
435300ef6d
commit
8b41108fb5
10 changed files with 6 additions and 3 deletions
|
@ -6,7 +6,7 @@ plugins {
|
||||||
dependencies {
|
dependencies {
|
||||||
api(projects.mail.common)
|
api(projects.mail.common)
|
||||||
api(projects.backend.api)
|
api(projects.backend.api)
|
||||||
api(projects.app.htmlCleaner)
|
api(projects.library.htmlCleaner)
|
||||||
api(projects.core.android.common)
|
api(projects.core.android.common)
|
||||||
|
|
||||||
implementation(projects.plugins.openpgpApiLib.openpgpApi)
|
implementation(projects.plugins.openpgpApiLib.openpgpApi)
|
||||||
|
|
|
@ -9,7 +9,7 @@ application {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(projects.app.htmlCleaner)
|
implementation(projects.library.htmlCleaner)
|
||||||
|
|
||||||
implementation(libs.clikt)
|
implementation(libs.clikt)
|
||||||
implementation(libs.okio)
|
implementation(libs.okio)
|
||||||
|
|
|
@ -34,7 +34,6 @@ include(
|
||||||
":app:storage",
|
":app:storage",
|
||||||
":app:crypto-openpgp",
|
":app:crypto-openpgp",
|
||||||
":app:testing",
|
":app:testing",
|
||||||
":app:html-cleaner",
|
|
||||||
)
|
)
|
||||||
|
|
||||||
include(
|
include(
|
||||||
|
@ -110,3 +109,7 @@ include(
|
||||||
":cli:html-cleaner-cli",
|
":cli:html-cleaner-cli",
|
||||||
":cli:translation-cli",
|
":cli:translation-cli",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
include(
|
||||||
|
":library:html-cleaner",
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in a new issue