diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 7f09418..901a6d5 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -10,7 +10,6 @@ dependencyGuard { dependencies { implementation(projects.common) implementation(projects.designSystem) - implementation(projects.infrastructure.logger) implementation(projects.infrastructure.network) implementation(projects.feature.home) implementation(projects.feature.stocks) diff --git a/infrastructure/logger/.gitignore b/infrastructure/logger/.gitignore deleted file mode 100644 index 42afabf..0000000 --- a/infrastructure/logger/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/infrastructure/logger/build.gradle.kts b/infrastructure/logger/build.gradle.kts deleted file mode 100644 index 3a1efe4..0000000 --- a/infrastructure/logger/build.gradle.kts +++ /dev/null @@ -1,3 +0,0 @@ -plugins { - alias(libs.plugins.stonks.kotlin.library) -} diff --git a/infrastructure/logger/src/main/kotlin/br/com/stonks/infrastructure/logger/Logger.kt b/infrastructure/logger/src/main/kotlin/br/com/stonks/infrastructure/logger/Logger.kt deleted file mode 100644 index 2502c47..0000000 --- a/infrastructure/logger/src/main/kotlin/br/com/stonks/infrastructure/logger/Logger.kt +++ /dev/null @@ -1,3 +0,0 @@ -package br.com.stonks.infrastructure.logger - -interface Logger diff --git a/settings.gradle.kts b/settings.gradle.kts index d8ce29a..92963b2 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -22,7 +22,6 @@ dependencyResolutionManagement { include(":app") include(":common") include(":design-system") -include(":infrastructure:logger") include(":infrastructure:network") include(":feature:home") include(":feature:stocks")