diff --git a/buildSrc/src/main/kotlin/Dependencies.kt b/buildSrc/src/main/kotlin/Dependencies.kt index a86d52b..5ea0d8a 100644 --- a/buildSrc/src/main/kotlin/Dependencies.kt +++ b/buildSrc/src/main/kotlin/Dependencies.kt @@ -59,8 +59,4 @@ object Dependencies { // cloud config const val CLOUD_CONFIG = "org.springframework.cloud:spring-cloud-config-client" - - // apache poi - const val APACHE_POI = "org.apache.poi:poi:${DependencyVersions.APACHE_POI_VERSION}" - const val APACHE_POI_OOXML = "org.apache.poi:poi-ooxml:${DependencyVersions.APACHE_POI_OOXML}" } diff --git a/buildSrc/src/main/kotlin/DependencyVersions.kt b/buildSrc/src/main/kotlin/DependencyVersions.kt index 5f29494..fb4b898 100644 --- a/buildSrc/src/main/kotlin/DependencyVersions.kt +++ b/buildSrc/src/main/kotlin/DependencyVersions.kt @@ -13,6 +13,4 @@ object DependencyVersions { const val MOCKK_VERSION = "1.12.3" const val SPRING_MOCKK_VERSION = "3.1.1" const val NIMBUS_VERSION = "9.21" - const val APACHE_POI_VERSION = "5.0.0" - const val APACHE_POI_OOXML = "5.0.0" } diff --git a/user-infrastructure/build.gradle.kts b/user-infrastructure/build.gradle.kts index 5e57ea4..bc0ed10 100644 --- a/user-infrastructure/build.gradle.kts +++ b/user-infrastructure/build.gradle.kts @@ -35,8 +35,6 @@ dependencies { kapt(Dependencies.CONFIGURATION_PROCESSOR) implementation(Dependencies.REACTIVE_REDIS) implementation(Dependencies.CLOUD_CONFIG) - implementation(Dependencies.APACHE_POI) - implementation(Dependencies.APACHE_POI_OOXML) implementation(project(":user-domain")) }