diff --git a/.forge/BAIS-MULTI-1783814676-attempt-3.md b/.forge/BAIS-MULTI-1783814676-attempt-3.md
deleted file mode 100644
index 8e47149..0000000
--- a/.forge/BAIS-MULTI-1783814676-attempt-3.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# BAIS-MULTI-1783814676-attempt-3
-
-Forge 이슈 작업 브랜치 `forge/BAIS-MULTI-1783814676-attempt-3`.
diff --git a/pom.xml b/pom.xml
deleted file mode 100644
index 5296f37..0000000
--- a/pom.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
- 4.0.0
-
- com.klaro.bais
- bais-platform
- 1.0-SNAPSHOT
- pom
-
-
- org.springframework.boot
- spring-boot-starter-parent
- 3.5.14
-
-
-
- services/payments
-
-
diff --git a/services/payments/pom.xml b/services/payments/pom.xml
deleted file mode 100644
index 169526c..0000000
--- a/services/payments/pom.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
- 4.0.0
-
-
- ../../pom.xml
- com.klaro.bais
- bais-platform
- 1.0-SNAPSHOT
-
-
- payments
- 1.0-SNAPSHOT
-
-
-
- org.apache.commons
- commons-lang3
- 3.18.0
-
-
-
diff --git a/services/payments/src/main/java/com/klaro/bais/payments/PaymentReferenceService.java b/services/payments/src/main/java/com/klaro/bais/payments/PaymentReferenceService.java
deleted file mode 100644
index a349b69..0000000
--- a/services/payments/src/main/java/com/klaro/bais/payments/PaymentReferenceService.java
+++ /dev/null
@@ -1,9 +0,0 @@
-package com.klaro.bais.payments;
-
-import org.apache.commons.lang3.StringUtils;
-
-public class PaymentReferenceService {
- public String normalize(String input) {
- return StringUtils.trimToEmpty(input);
- }
-}
\ No newline at end of file
diff --git a/services/payments/src/test/java/com/klaro/bais/payments/PaymentReferenceServiceTest.java b/services/payments/src/test/java/com/klaro/bais/payments/PaymentReferenceServiceTest.java
deleted file mode 100644
index 52e7199..0000000
--- a/services/payments/src/test/java/com/klaro/bais/payments/PaymentReferenceServiceTest.java
+++ /dev/null
@@ -1,28 +0,0 @@
-package com.klaro.bais.payments;
-
-import org.junit.jupiter.api.Test;
-import static org.junit.jupiter.api.Assertions.*;
-
-class PaymentReferenceServiceTest {
- private final PaymentReferenceService service = new PaymentReferenceService();
-
- @Test
- void testNormalize_NullInput() {
- assertEquals("", service.normalize(null));
- }
-
- @Test
- void testNormalize_EmptyInput() {
- assertEquals("", service.normalize(""));
- }
-
- @Test
- void testNormalize_WhitespaceInput() {
- assertEquals("", service.normalize(" "));
- }
-
- @Test
- void testNormalize_ValidInput() {
- assertEquals("valid string", service.normalize(" valid string "));
- }
-}
\ No newline at end of file