Create allFeatureApis extension and rename allFeatures to allFeaturesImpl

This commit is contained in:
Benoit Marty
2023-03-09 14:52:40 +01:00
parent 699e816328
commit 6a34caf33d
4 changed files with 19 additions and 13 deletions

View File

@@ -61,7 +61,18 @@ fun DependencyHandlerScope.allLibraries() {
implementation(project(":libraries:di"))
}
fun DependencyHandlerScope.allFeatures() {
fun DependencyHandlerScope.allFeaturesApi() {
implementation(project(":features:onboarding:api"))
implementation(project(":features:login:api"))
implementation(project(":features:logout:api"))
implementation(project(":features:roomlist:api"))
implementation(project(":features:messages:api"))
implementation(project(":features:rageshake:api"))
implementation(project(":features:preferences:api"))
implementation(project(":features:createroom:api"))
}
fun DependencyHandlerScope.allFeaturesImpl() {
implementation(project(":features:onboarding:impl"))
implementation(project(":features:login:impl"))
implementation(project(":features:logout:impl"))