From 5186d1096aca41101ba6aef02080d154a8244951 Mon Sep 17 00:00:00 2001 From: stayforyou Date: Fri, 10 May 2024 09:02:50 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EC=83=81=ED=92=88=20=EB=AA=A8=EB=93=88?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- {service-customer => customer}/Dockerfile | 0 {service-customer => customer}/build.gradle.kts | 0 .../gradle/wrapper/gradle-wrapper.jar | Bin .../gradle/wrapper/gradle-wrapper.properties | 0 {service-customer => customer}/gradlew | 0 {service-customer => customer}/gradlew.bat | 0 {service-customer => customer}/settings.gradle.kts | 0 .../kotlin/me/bread/customer/CustomerApplication.kt | 0 .../presentation/rest/CustomerController.kt | 0 .../src/main/resources/application.properties | 0 .../me/bread/customer/CustomerApplicationTests.kt | 0 {service-order => order}/Dockerfile | 0 {service-order => order}/build.gradle.kts | 0 {service-order => order}/gradle.properties | 0 .../gradle/wrapper/gradle-wrapper.jar | Bin .../gradle/wrapper/gradle-wrapper.properties | 0 {service-order => order}/gradlew | 0 {service-order => order}/gradlew.bat | 0 {service-order => order}/settings.gradle.kts | 0 .../main/kotlin/me/bread/order/OrderApplication.kt | 0 .../me/bread/order/adapter/OrderItemMapper.kt | 0 .../kotlin/me/bread/order/adapter/OrderMapper.kt | 0 .../me/bread/order/adapter/PaymentItemMapper.kt | 0 .../kotlin/me/bread/order/adapter/PaymentMapper.kt | 0 .../me/bread/order/application/annotation/Live.kt | 0 .../me/bread/order/application/annotation/Local.kt | 0 .../bread/order/application/annotation/LocalDev.kt | 0 .../me/bread/order/application/external/AuthApi.kt | 0 .../bread/order/application/external/DeliveryApi.kt | 0 .../bread/order/application/external/PaymentApi.kt | 0 .../bread/order/application/external/ProductApi.kt | 0 .../me/bread/order/application/model/Customer.kt | 0 .../me/bread/order/application/model/TossPayment.kt | 0 .../bread/order/application/service/AuthService.kt | 0 .../order/application/service/DeliveryService.kt | 0 .../bread/order/application/service/OrderService.kt | 0 .../order/application/service/PaymentService.kt | 0 .../order/application/service/ProductService.kt | 0 .../order/application/usecase/PaymentUseCase.kt | 0 .../order/application/usecase/PreorderUseCase.kt | 0 .../kotlin/me/bread/order/domain/entity/Order.kt | 0 .../me/bread/order/domain/entity/OrderItem.kt | 0 .../kotlin/me/bread/order/domain/entity/Payment.kt | 0 .../me/bread/order/domain/entity/PaymentItem.kt | 0 .../me/bread/order/domain/enums/OrderStatus.kt | 0 .../order/domain/repository/OrderItemRepository.kt | 0 .../order/domain/repository/OrderRepository.kt | 0 .../domain/repository/PaymentItemRepository.kt | 0 .../order/domain/repository/PaymentRepository.kt | 0 .../kotlin/me/bread/order/domain/vo/PhoneNumber.kt | 0 .../order/infrastructure/external/AuthFakeApi.kt | 0 .../order/infrastructure/external/AuthRealApi.kt | 0 .../infrastructure/external/DeliveryFakeApi.kt | 0 .../order/infrastructure/external/FakePaymentApi.kt | 0 .../order/infrastructure/external/ProductFakeApi.kt | 0 .../infrastructure/external/TossMockWebHook.kt | 0 .../infrastructure/external/WebClientConfig.kt | 0 .../infrastructure/r2dbc/config/local/H2Config.kt | 0 .../r2dbc/config/local/H2FlywayConfig.kt | 0 .../r2dbc/config/local/MySQLConfig.kt | 0 .../r2dbc/config/local/MySQLFlywayConfig.kt | 0 .../infrastructure/r2dbc/entity/OrderEntity.kt | 0 .../infrastructure/r2dbc/entity/OrderItemEntity.kt | 0 .../infrastructure/r2dbc/entity/PaymentEntity.kt | 0 .../r2dbc/entity/PaymentItemEntity.kt | 0 .../r2dbc/repository/OrderCoroutineRepository.kt | 0 .../r2dbc/repository/OrderCustomRepository.kt | 0 .../repository/OrderItemCoroutineRepository.kt | 0 .../r2dbc/repository/OrderItemRepositoryAdapter.kt | 0 .../r2dbc/repository/OrderRepositoryAdapter.kt | 0 .../r2dbc/repository/PaymentCoroutineRepository.kt | 0 .../repository/PaymentItemCoroutineRepository.kt | 0 .../repository/PaymentItemRepositoryAdapter.kt | 0 .../r2dbc/repository/PaymentRepositoryAdapter.kt | 0 .../order/presentation/rest/HealthController.kt | 0 .../order/presentation/rest/OrderController.kt | 0 .../order/presentation/rest/PaymentController.kt | 0 .../order/presentation/rest/RestExceptionHandler.kt | 0 .../presentation/rest/request/PaymentRequest.kt | 0 .../presentation/rest/request/PreorderRequest.kt | 0 .../order/presentation/support/error/ErrorCode.kt | 0 .../presentation/support/error/ErrorMessage.kt | 0 .../order/presentation/support/error/ErrorType.kt | 0 .../presentation/support/error/RestException.kt | 0 .../presentation/support/response/RestResponse.kt | 0 .../presentation/support/response/ResultType.kt | 0 .../presentation/support/security/SecurityConfig.kt | 0 .../src/main/resources/application.yml | 0 .../main/resources/db/migration/V1__Init_schema.sql | 0 .../src/test/kotlin/me/bread/order/BaseTestSetup.kt | 0 .../src/test/kotlin/me/bread/order/Fixture.kt | 0 .../me/bread/order/OrderApplicationContextTest.kt | 0 .../application/usecase/CompleteOrderUseCaseTest.kt | 0 .../order/application/usecase/PaymentUseCaseTest.kt | 0 .../application/usecase/PreorderUseCaseTest.kt | 0 .../me/bread/order/domain/common/PhoneNumberTest.kt | 0 .../bread/order/integration/OrderIntegrationTest.kt | 0 {http => test-http}/pay-order.http | 0 {http => test-http}/pre-order.http | 0 99 files changed, 0 insertions(+), 0 deletions(-) rename {service-customer => customer}/Dockerfile (100%) rename {service-customer => customer}/build.gradle.kts (100%) rename {service-customer => customer}/gradle/wrapper/gradle-wrapper.jar (100%) rename {service-customer => customer}/gradle/wrapper/gradle-wrapper.properties (100%) rename {service-customer => customer}/gradlew (100%) rename {service-customer => customer}/gradlew.bat (100%) rename {service-customer => customer}/settings.gradle.kts (100%) rename {service-customer => customer}/src/main/kotlin/me/bread/customer/CustomerApplication.kt (100%) rename {service-customer => customer}/src/main/kotlin/me/bread/customer/presentation/rest/CustomerController.kt (100%) rename {service-customer => customer}/src/main/resources/application.properties (100%) rename {service-customer => customer}/src/test/kotlin/me/bread/customer/CustomerApplicationTests.kt (100%) rename {service-order => order}/Dockerfile (100%) rename {service-order => order}/build.gradle.kts (100%) rename {service-order => order}/gradle.properties (100%) rename {service-order => order}/gradle/wrapper/gradle-wrapper.jar (100%) rename {service-order => order}/gradle/wrapper/gradle-wrapper.properties (100%) rename {service-order => order}/gradlew (100%) rename {service-order => order}/gradlew.bat (100%) rename {service-order => order}/settings.gradle.kts (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/OrderApplication.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/adapter/OrderItemMapper.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/adapter/OrderMapper.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/adapter/PaymentItemMapper.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/adapter/PaymentMapper.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/application/annotation/Live.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/application/annotation/Local.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/application/annotation/LocalDev.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/application/external/AuthApi.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/application/external/DeliveryApi.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/application/external/PaymentApi.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/application/external/ProductApi.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/application/model/Customer.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/application/model/TossPayment.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/application/service/AuthService.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/application/service/DeliveryService.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/application/service/OrderService.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/application/service/PaymentService.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/application/service/ProductService.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/application/usecase/PaymentUseCase.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/application/usecase/PreorderUseCase.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/domain/entity/Order.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/domain/entity/OrderItem.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/domain/entity/Payment.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/domain/entity/PaymentItem.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/domain/enums/OrderStatus.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/domain/repository/OrderItemRepository.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/domain/repository/OrderRepository.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/domain/repository/PaymentItemRepository.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/domain/repository/PaymentRepository.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/domain/vo/PhoneNumber.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/external/AuthFakeApi.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/external/AuthRealApi.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/external/DeliveryFakeApi.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/external/FakePaymentApi.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/external/ProductFakeApi.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/external/TossMockWebHook.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/external/WebClientConfig.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/H2Config.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/H2FlywayConfig.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/MySQLConfig.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/MySQLFlywayConfig.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/OrderEntity.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/OrderItemEntity.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/PaymentEntity.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/PaymentItemEntity.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderCoroutineRepository.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderCustomRepository.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderItemCoroutineRepository.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderItemRepositoryAdapter.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderRepositoryAdapter.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentCoroutineRepository.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentItemCoroutineRepository.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentItemRepositoryAdapter.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentRepositoryAdapter.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/presentation/rest/HealthController.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/presentation/rest/OrderController.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/presentation/rest/PaymentController.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/presentation/rest/RestExceptionHandler.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/presentation/rest/request/PaymentRequest.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/presentation/rest/request/PreorderRequest.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/presentation/support/error/ErrorCode.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/presentation/support/error/ErrorMessage.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/presentation/support/error/ErrorType.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/presentation/support/error/RestException.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/presentation/support/response/RestResponse.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/presentation/support/response/ResultType.kt (100%) rename {service-order => order}/src/main/kotlin/me/bread/order/presentation/support/security/SecurityConfig.kt (100%) rename {service-order => order}/src/main/resources/application.yml (100%) rename {service-order => order}/src/main/resources/db/migration/V1__Init_schema.sql (100%) rename {service-order => order}/src/test/kotlin/me/bread/order/BaseTestSetup.kt (100%) rename {service-order => order}/src/test/kotlin/me/bread/order/Fixture.kt (100%) rename {service-order => order}/src/test/kotlin/me/bread/order/OrderApplicationContextTest.kt (100%) rename {service-order => order}/src/test/kotlin/me/bread/order/application/usecase/CompleteOrderUseCaseTest.kt (100%) rename {service-order => order}/src/test/kotlin/me/bread/order/application/usecase/PaymentUseCaseTest.kt (100%) rename {service-order => order}/src/test/kotlin/me/bread/order/application/usecase/PreorderUseCaseTest.kt (100%) rename {service-order => order}/src/test/kotlin/me/bread/order/domain/common/PhoneNumberTest.kt (100%) rename {service-order => order}/src/test/kotlin/me/bread/order/integration/OrderIntegrationTest.kt (100%) rename {http => test-http}/pay-order.http (100%) rename {http => test-http}/pre-order.http (100%) diff --git a/service-customer/Dockerfile b/customer/Dockerfile similarity index 100% rename from service-customer/Dockerfile rename to customer/Dockerfile diff --git a/service-customer/build.gradle.kts b/customer/build.gradle.kts similarity index 100% rename from service-customer/build.gradle.kts rename to customer/build.gradle.kts diff --git a/service-customer/gradle/wrapper/gradle-wrapper.jar b/customer/gradle/wrapper/gradle-wrapper.jar similarity index 100% rename from service-customer/gradle/wrapper/gradle-wrapper.jar rename to customer/gradle/wrapper/gradle-wrapper.jar diff --git a/service-customer/gradle/wrapper/gradle-wrapper.properties b/customer/gradle/wrapper/gradle-wrapper.properties similarity index 100% rename from service-customer/gradle/wrapper/gradle-wrapper.properties rename to customer/gradle/wrapper/gradle-wrapper.properties diff --git a/service-customer/gradlew b/customer/gradlew similarity index 100% rename from service-customer/gradlew rename to customer/gradlew diff --git a/service-customer/gradlew.bat b/customer/gradlew.bat similarity index 100% rename from service-customer/gradlew.bat rename to customer/gradlew.bat diff --git a/service-customer/settings.gradle.kts b/customer/settings.gradle.kts similarity index 100% rename from service-customer/settings.gradle.kts rename to customer/settings.gradle.kts diff --git a/service-customer/src/main/kotlin/me/bread/customer/CustomerApplication.kt b/customer/src/main/kotlin/me/bread/customer/CustomerApplication.kt similarity index 100% rename from service-customer/src/main/kotlin/me/bread/customer/CustomerApplication.kt rename to customer/src/main/kotlin/me/bread/customer/CustomerApplication.kt diff --git a/service-customer/src/main/kotlin/me/bread/customer/presentation/rest/CustomerController.kt b/customer/src/main/kotlin/me/bread/customer/presentation/rest/CustomerController.kt similarity index 100% rename from service-customer/src/main/kotlin/me/bread/customer/presentation/rest/CustomerController.kt rename to customer/src/main/kotlin/me/bread/customer/presentation/rest/CustomerController.kt diff --git a/service-customer/src/main/resources/application.properties b/customer/src/main/resources/application.properties similarity index 100% rename from service-customer/src/main/resources/application.properties rename to customer/src/main/resources/application.properties diff --git a/service-customer/src/test/kotlin/me/bread/customer/CustomerApplicationTests.kt b/customer/src/test/kotlin/me/bread/customer/CustomerApplicationTests.kt similarity index 100% rename from service-customer/src/test/kotlin/me/bread/customer/CustomerApplicationTests.kt rename to customer/src/test/kotlin/me/bread/customer/CustomerApplicationTests.kt diff --git a/service-order/Dockerfile b/order/Dockerfile similarity index 100% rename from service-order/Dockerfile rename to order/Dockerfile diff --git a/service-order/build.gradle.kts b/order/build.gradle.kts similarity index 100% rename from service-order/build.gradle.kts rename to order/build.gradle.kts diff --git a/service-order/gradle.properties b/order/gradle.properties similarity index 100% rename from service-order/gradle.properties rename to order/gradle.properties diff --git a/service-order/gradle/wrapper/gradle-wrapper.jar b/order/gradle/wrapper/gradle-wrapper.jar similarity index 100% rename from service-order/gradle/wrapper/gradle-wrapper.jar rename to order/gradle/wrapper/gradle-wrapper.jar diff --git a/service-order/gradle/wrapper/gradle-wrapper.properties b/order/gradle/wrapper/gradle-wrapper.properties similarity index 100% rename from service-order/gradle/wrapper/gradle-wrapper.properties rename to order/gradle/wrapper/gradle-wrapper.properties diff --git a/service-order/gradlew b/order/gradlew similarity index 100% rename from service-order/gradlew rename to order/gradlew diff --git a/service-order/gradlew.bat b/order/gradlew.bat similarity index 100% rename from service-order/gradlew.bat rename to order/gradlew.bat diff --git a/service-order/settings.gradle.kts b/order/settings.gradle.kts similarity index 100% rename from service-order/settings.gradle.kts rename to order/settings.gradle.kts diff --git a/service-order/src/main/kotlin/me/bread/order/OrderApplication.kt b/order/src/main/kotlin/me/bread/order/OrderApplication.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/OrderApplication.kt rename to order/src/main/kotlin/me/bread/order/OrderApplication.kt diff --git a/service-order/src/main/kotlin/me/bread/order/adapter/OrderItemMapper.kt b/order/src/main/kotlin/me/bread/order/adapter/OrderItemMapper.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/adapter/OrderItemMapper.kt rename to order/src/main/kotlin/me/bread/order/adapter/OrderItemMapper.kt diff --git a/service-order/src/main/kotlin/me/bread/order/adapter/OrderMapper.kt b/order/src/main/kotlin/me/bread/order/adapter/OrderMapper.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/adapter/OrderMapper.kt rename to order/src/main/kotlin/me/bread/order/adapter/OrderMapper.kt diff --git a/service-order/src/main/kotlin/me/bread/order/adapter/PaymentItemMapper.kt b/order/src/main/kotlin/me/bread/order/adapter/PaymentItemMapper.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/adapter/PaymentItemMapper.kt rename to order/src/main/kotlin/me/bread/order/adapter/PaymentItemMapper.kt diff --git a/service-order/src/main/kotlin/me/bread/order/adapter/PaymentMapper.kt b/order/src/main/kotlin/me/bread/order/adapter/PaymentMapper.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/adapter/PaymentMapper.kt rename to order/src/main/kotlin/me/bread/order/adapter/PaymentMapper.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/annotation/Live.kt b/order/src/main/kotlin/me/bread/order/application/annotation/Live.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/annotation/Live.kt rename to order/src/main/kotlin/me/bread/order/application/annotation/Live.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/annotation/Local.kt b/order/src/main/kotlin/me/bread/order/application/annotation/Local.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/annotation/Local.kt rename to order/src/main/kotlin/me/bread/order/application/annotation/Local.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/annotation/LocalDev.kt b/order/src/main/kotlin/me/bread/order/application/annotation/LocalDev.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/annotation/LocalDev.kt rename to order/src/main/kotlin/me/bread/order/application/annotation/LocalDev.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/external/AuthApi.kt b/order/src/main/kotlin/me/bread/order/application/external/AuthApi.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/external/AuthApi.kt rename to order/src/main/kotlin/me/bread/order/application/external/AuthApi.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/external/DeliveryApi.kt b/order/src/main/kotlin/me/bread/order/application/external/DeliveryApi.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/external/DeliveryApi.kt rename to order/src/main/kotlin/me/bread/order/application/external/DeliveryApi.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/external/PaymentApi.kt b/order/src/main/kotlin/me/bread/order/application/external/PaymentApi.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/external/PaymentApi.kt rename to order/src/main/kotlin/me/bread/order/application/external/PaymentApi.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/external/ProductApi.kt b/order/src/main/kotlin/me/bread/order/application/external/ProductApi.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/external/ProductApi.kt rename to order/src/main/kotlin/me/bread/order/application/external/ProductApi.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/model/Customer.kt b/order/src/main/kotlin/me/bread/order/application/model/Customer.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/model/Customer.kt rename to order/src/main/kotlin/me/bread/order/application/model/Customer.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/model/TossPayment.kt b/order/src/main/kotlin/me/bread/order/application/model/TossPayment.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/model/TossPayment.kt rename to order/src/main/kotlin/me/bread/order/application/model/TossPayment.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/service/AuthService.kt b/order/src/main/kotlin/me/bread/order/application/service/AuthService.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/service/AuthService.kt rename to order/src/main/kotlin/me/bread/order/application/service/AuthService.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/service/DeliveryService.kt b/order/src/main/kotlin/me/bread/order/application/service/DeliveryService.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/service/DeliveryService.kt rename to order/src/main/kotlin/me/bread/order/application/service/DeliveryService.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/service/OrderService.kt b/order/src/main/kotlin/me/bread/order/application/service/OrderService.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/service/OrderService.kt rename to order/src/main/kotlin/me/bread/order/application/service/OrderService.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/service/PaymentService.kt b/order/src/main/kotlin/me/bread/order/application/service/PaymentService.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/service/PaymentService.kt rename to order/src/main/kotlin/me/bread/order/application/service/PaymentService.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/service/ProductService.kt b/order/src/main/kotlin/me/bread/order/application/service/ProductService.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/service/ProductService.kt rename to order/src/main/kotlin/me/bread/order/application/service/ProductService.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/usecase/PaymentUseCase.kt b/order/src/main/kotlin/me/bread/order/application/usecase/PaymentUseCase.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/usecase/PaymentUseCase.kt rename to order/src/main/kotlin/me/bread/order/application/usecase/PaymentUseCase.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/usecase/PreorderUseCase.kt b/order/src/main/kotlin/me/bread/order/application/usecase/PreorderUseCase.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/usecase/PreorderUseCase.kt rename to order/src/main/kotlin/me/bread/order/application/usecase/PreorderUseCase.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/entity/Order.kt b/order/src/main/kotlin/me/bread/order/domain/entity/Order.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/entity/Order.kt rename to order/src/main/kotlin/me/bread/order/domain/entity/Order.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/entity/OrderItem.kt b/order/src/main/kotlin/me/bread/order/domain/entity/OrderItem.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/entity/OrderItem.kt rename to order/src/main/kotlin/me/bread/order/domain/entity/OrderItem.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/entity/Payment.kt b/order/src/main/kotlin/me/bread/order/domain/entity/Payment.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/entity/Payment.kt rename to order/src/main/kotlin/me/bread/order/domain/entity/Payment.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/entity/PaymentItem.kt b/order/src/main/kotlin/me/bread/order/domain/entity/PaymentItem.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/entity/PaymentItem.kt rename to order/src/main/kotlin/me/bread/order/domain/entity/PaymentItem.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/enums/OrderStatus.kt b/order/src/main/kotlin/me/bread/order/domain/enums/OrderStatus.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/enums/OrderStatus.kt rename to order/src/main/kotlin/me/bread/order/domain/enums/OrderStatus.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/repository/OrderItemRepository.kt b/order/src/main/kotlin/me/bread/order/domain/repository/OrderItemRepository.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/repository/OrderItemRepository.kt rename to order/src/main/kotlin/me/bread/order/domain/repository/OrderItemRepository.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/repository/OrderRepository.kt b/order/src/main/kotlin/me/bread/order/domain/repository/OrderRepository.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/repository/OrderRepository.kt rename to order/src/main/kotlin/me/bread/order/domain/repository/OrderRepository.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/repository/PaymentItemRepository.kt b/order/src/main/kotlin/me/bread/order/domain/repository/PaymentItemRepository.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/repository/PaymentItemRepository.kt rename to order/src/main/kotlin/me/bread/order/domain/repository/PaymentItemRepository.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/repository/PaymentRepository.kt b/order/src/main/kotlin/me/bread/order/domain/repository/PaymentRepository.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/repository/PaymentRepository.kt rename to order/src/main/kotlin/me/bread/order/domain/repository/PaymentRepository.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/vo/PhoneNumber.kt b/order/src/main/kotlin/me/bread/order/domain/vo/PhoneNumber.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/vo/PhoneNumber.kt rename to order/src/main/kotlin/me/bread/order/domain/vo/PhoneNumber.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/external/AuthFakeApi.kt b/order/src/main/kotlin/me/bread/order/infrastructure/external/AuthFakeApi.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/external/AuthFakeApi.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/external/AuthFakeApi.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/external/AuthRealApi.kt b/order/src/main/kotlin/me/bread/order/infrastructure/external/AuthRealApi.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/external/AuthRealApi.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/external/AuthRealApi.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/external/DeliveryFakeApi.kt b/order/src/main/kotlin/me/bread/order/infrastructure/external/DeliveryFakeApi.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/external/DeliveryFakeApi.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/external/DeliveryFakeApi.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/external/FakePaymentApi.kt b/order/src/main/kotlin/me/bread/order/infrastructure/external/FakePaymentApi.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/external/FakePaymentApi.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/external/FakePaymentApi.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/external/ProductFakeApi.kt b/order/src/main/kotlin/me/bread/order/infrastructure/external/ProductFakeApi.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/external/ProductFakeApi.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/external/ProductFakeApi.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/external/TossMockWebHook.kt b/order/src/main/kotlin/me/bread/order/infrastructure/external/TossMockWebHook.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/external/TossMockWebHook.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/external/TossMockWebHook.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/external/WebClientConfig.kt b/order/src/main/kotlin/me/bread/order/infrastructure/external/WebClientConfig.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/external/WebClientConfig.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/external/WebClientConfig.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/H2Config.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/H2Config.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/H2Config.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/H2Config.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/H2FlywayConfig.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/H2FlywayConfig.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/H2FlywayConfig.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/H2FlywayConfig.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/MySQLConfig.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/MySQLConfig.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/MySQLConfig.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/MySQLConfig.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/MySQLFlywayConfig.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/MySQLFlywayConfig.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/MySQLFlywayConfig.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/MySQLFlywayConfig.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/OrderEntity.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/OrderEntity.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/OrderEntity.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/OrderEntity.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/OrderItemEntity.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/OrderItemEntity.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/OrderItemEntity.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/OrderItemEntity.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/PaymentEntity.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/PaymentEntity.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/PaymentEntity.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/PaymentEntity.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/PaymentItemEntity.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/PaymentItemEntity.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/PaymentItemEntity.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/PaymentItemEntity.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderCoroutineRepository.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderCoroutineRepository.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderCoroutineRepository.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderCoroutineRepository.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderCustomRepository.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderCustomRepository.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderCustomRepository.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderCustomRepository.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderItemCoroutineRepository.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderItemCoroutineRepository.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderItemCoroutineRepository.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderItemCoroutineRepository.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderItemRepositoryAdapter.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderItemRepositoryAdapter.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderItemRepositoryAdapter.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderItemRepositoryAdapter.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderRepositoryAdapter.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderRepositoryAdapter.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderRepositoryAdapter.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderRepositoryAdapter.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentCoroutineRepository.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentCoroutineRepository.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentCoroutineRepository.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentCoroutineRepository.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentItemCoroutineRepository.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentItemCoroutineRepository.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentItemCoroutineRepository.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentItemCoroutineRepository.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentItemRepositoryAdapter.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentItemRepositoryAdapter.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentItemRepositoryAdapter.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentItemRepositoryAdapter.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentRepositoryAdapter.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentRepositoryAdapter.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentRepositoryAdapter.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentRepositoryAdapter.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/rest/HealthController.kt b/order/src/main/kotlin/me/bread/order/presentation/rest/HealthController.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/rest/HealthController.kt rename to order/src/main/kotlin/me/bread/order/presentation/rest/HealthController.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/rest/OrderController.kt b/order/src/main/kotlin/me/bread/order/presentation/rest/OrderController.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/rest/OrderController.kt rename to order/src/main/kotlin/me/bread/order/presentation/rest/OrderController.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/rest/PaymentController.kt b/order/src/main/kotlin/me/bread/order/presentation/rest/PaymentController.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/rest/PaymentController.kt rename to order/src/main/kotlin/me/bread/order/presentation/rest/PaymentController.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/rest/RestExceptionHandler.kt b/order/src/main/kotlin/me/bread/order/presentation/rest/RestExceptionHandler.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/rest/RestExceptionHandler.kt rename to order/src/main/kotlin/me/bread/order/presentation/rest/RestExceptionHandler.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/rest/request/PaymentRequest.kt b/order/src/main/kotlin/me/bread/order/presentation/rest/request/PaymentRequest.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/rest/request/PaymentRequest.kt rename to order/src/main/kotlin/me/bread/order/presentation/rest/request/PaymentRequest.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/rest/request/PreorderRequest.kt b/order/src/main/kotlin/me/bread/order/presentation/rest/request/PreorderRequest.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/rest/request/PreorderRequest.kt rename to order/src/main/kotlin/me/bread/order/presentation/rest/request/PreorderRequest.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorCode.kt b/order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorCode.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorCode.kt rename to order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorCode.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorMessage.kt b/order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorMessage.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorMessage.kt rename to order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorMessage.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorType.kt b/order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorType.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorType.kt rename to order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorType.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/support/error/RestException.kt b/order/src/main/kotlin/me/bread/order/presentation/support/error/RestException.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/support/error/RestException.kt rename to order/src/main/kotlin/me/bread/order/presentation/support/error/RestException.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/support/response/RestResponse.kt b/order/src/main/kotlin/me/bread/order/presentation/support/response/RestResponse.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/support/response/RestResponse.kt rename to order/src/main/kotlin/me/bread/order/presentation/support/response/RestResponse.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/support/response/ResultType.kt b/order/src/main/kotlin/me/bread/order/presentation/support/response/ResultType.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/support/response/ResultType.kt rename to order/src/main/kotlin/me/bread/order/presentation/support/response/ResultType.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/support/security/SecurityConfig.kt b/order/src/main/kotlin/me/bread/order/presentation/support/security/SecurityConfig.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/support/security/SecurityConfig.kt rename to order/src/main/kotlin/me/bread/order/presentation/support/security/SecurityConfig.kt diff --git a/service-order/src/main/resources/application.yml b/order/src/main/resources/application.yml similarity index 100% rename from service-order/src/main/resources/application.yml rename to order/src/main/resources/application.yml diff --git a/service-order/src/main/resources/db/migration/V1__Init_schema.sql b/order/src/main/resources/db/migration/V1__Init_schema.sql similarity index 100% rename from service-order/src/main/resources/db/migration/V1__Init_schema.sql rename to order/src/main/resources/db/migration/V1__Init_schema.sql diff --git a/service-order/src/test/kotlin/me/bread/order/BaseTestSetup.kt b/order/src/test/kotlin/me/bread/order/BaseTestSetup.kt similarity index 100% rename from service-order/src/test/kotlin/me/bread/order/BaseTestSetup.kt rename to order/src/test/kotlin/me/bread/order/BaseTestSetup.kt diff --git a/service-order/src/test/kotlin/me/bread/order/Fixture.kt b/order/src/test/kotlin/me/bread/order/Fixture.kt similarity index 100% rename from service-order/src/test/kotlin/me/bread/order/Fixture.kt rename to order/src/test/kotlin/me/bread/order/Fixture.kt diff --git a/service-order/src/test/kotlin/me/bread/order/OrderApplicationContextTest.kt b/order/src/test/kotlin/me/bread/order/OrderApplicationContextTest.kt similarity index 100% rename from service-order/src/test/kotlin/me/bread/order/OrderApplicationContextTest.kt rename to order/src/test/kotlin/me/bread/order/OrderApplicationContextTest.kt diff --git a/service-order/src/test/kotlin/me/bread/order/application/usecase/CompleteOrderUseCaseTest.kt b/order/src/test/kotlin/me/bread/order/application/usecase/CompleteOrderUseCaseTest.kt similarity index 100% rename from service-order/src/test/kotlin/me/bread/order/application/usecase/CompleteOrderUseCaseTest.kt rename to order/src/test/kotlin/me/bread/order/application/usecase/CompleteOrderUseCaseTest.kt diff --git a/service-order/src/test/kotlin/me/bread/order/application/usecase/PaymentUseCaseTest.kt b/order/src/test/kotlin/me/bread/order/application/usecase/PaymentUseCaseTest.kt similarity index 100% rename from service-order/src/test/kotlin/me/bread/order/application/usecase/PaymentUseCaseTest.kt rename to order/src/test/kotlin/me/bread/order/application/usecase/PaymentUseCaseTest.kt diff --git a/service-order/src/test/kotlin/me/bread/order/application/usecase/PreorderUseCaseTest.kt b/order/src/test/kotlin/me/bread/order/application/usecase/PreorderUseCaseTest.kt similarity index 100% rename from service-order/src/test/kotlin/me/bread/order/application/usecase/PreorderUseCaseTest.kt rename to order/src/test/kotlin/me/bread/order/application/usecase/PreorderUseCaseTest.kt diff --git a/service-order/src/test/kotlin/me/bread/order/domain/common/PhoneNumberTest.kt b/order/src/test/kotlin/me/bread/order/domain/common/PhoneNumberTest.kt similarity index 100% rename from service-order/src/test/kotlin/me/bread/order/domain/common/PhoneNumberTest.kt rename to order/src/test/kotlin/me/bread/order/domain/common/PhoneNumberTest.kt diff --git a/service-order/src/test/kotlin/me/bread/order/integration/OrderIntegrationTest.kt b/order/src/test/kotlin/me/bread/order/integration/OrderIntegrationTest.kt similarity index 100% rename from service-order/src/test/kotlin/me/bread/order/integration/OrderIntegrationTest.kt rename to order/src/test/kotlin/me/bread/order/integration/OrderIntegrationTest.kt diff --git a/http/pay-order.http b/test-http/pay-order.http similarity index 100% rename from http/pay-order.http rename to test-http/pay-order.http diff --git a/http/pre-order.http b/test-http/pre-order.http similarity index 100% rename from http/pre-order.http rename to test-http/pre-order.http