From f83ecfe64b6b02525e23795f9b8c64f92c6e88de Mon Sep 17 00:00:00 2001 From: forge-bot Date: Fri, 10 Jul 2026 15:41:06 +0000 Subject: [PATCH 1/4] forge: open work branch for BAIS-NATIVE-1783698057-attempt-1 --- .forge/BAIS-NATIVE-1783698057-attempt-1.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .forge/BAIS-NATIVE-1783698057-attempt-1.md diff --git a/.forge/BAIS-NATIVE-1783698057-attempt-1.md b/.forge/BAIS-NATIVE-1783698057-attempt-1.md new file mode 100644 index 0000000..ff1dd68 --- /dev/null +++ b/.forge/BAIS-NATIVE-1783698057-attempt-1.md @@ -0,0 +1,3 @@ +# BAIS-NATIVE-1783698057-attempt-1 + +Forge 이슈 작업 브랜치 `forge/BAIS-NATIVE-1783698057-attempt-1`. -- 2.49.1 From e0b325fea85c1d95535fbada9a84ee78ee420977 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Fri, 10 Jul 2026 15:41:17 +0000 Subject: [PATCH 2/4] =?UTF-8?q?Spring=20Boot=20=EC=B5=9C=EC=86=8C=20?= =?UTF-8?q?=EC=A0=84=ED=99=98=20=EB=8B=A8=EC=9C=84=20=EA=B5=AC=ED=98=84=20?= =?UTF-8?q?(BAIS-NATIVE-1783698057)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 pom.xml diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..664b084 --- /dev/null +++ b/pom.xml @@ -0,0 +1,42 @@ + + 4.0.0 + + com.example + bais-gate-e2e + 1.0.0 + jar + + + org.springframework.boot + spring-boot-starter-parent + 2.7.5 + + + + + 17 + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + \ No newline at end of file -- 2.49.1 From 18ccadd53ae0ae5f2d1132d52e7bf6cbef8efdff Mon Sep 17 00:00:00 2001 From: forge-bot Date: Fri, 10 Jul 2026 15:41:19 +0000 Subject: [PATCH 3/4] =?UTF-8?q?Spring=20Boot=20=EC=B5=9C=EC=86=8C=20?= =?UTF-8?q?=EC=A0=84=ED=99=98=20=EB=8B=A8=EC=9C=84=20=EA=B5=AC=ED=98=84=20?= =?UTF-8?q?(BAIS-NATIVE-1783698057)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/example/baisgate/BaisGateApplication.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/main/java/com/example/baisgate/BaisGateApplication.java diff --git a/src/main/java/com/example/baisgate/BaisGateApplication.java b/src/main/java/com/example/baisgate/BaisGateApplication.java new file mode 100644 index 0000000..451a245 --- /dev/null +++ b/src/main/java/com/example/baisgate/BaisGateApplication.java @@ -0,0 +1,11 @@ +package com.example.baisgate; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class BaisGateApplication { + public static void main(String[] args) { + SpringApplication.run(BaisGateApplication.class, args); + } +} \ No newline at end of file -- 2.49.1 From 1d856ab09097c86577abe515c963ea62cdb77d62 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Fri, 10 Jul 2026 15:41:20 +0000 Subject: [PATCH 4/4] =?UTF-8?q?Spring=20Boot=20=EC=B5=9C=EC=86=8C=20?= =?UTF-8?q?=EC=A0=84=ED=99=98=20=EB=8B=A8=EC=9C=84=20=EA=B5=AC=ED=98=84=20?= =?UTF-8?q?(BAIS-NATIVE-1783698057)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../example/baisgate/BaisGateApplicationTests.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/test/java/com/example/baisgate/BaisGateApplicationTests.java diff --git a/src/test/java/com/example/baisgate/BaisGateApplicationTests.java b/src/test/java/com/example/baisgate/BaisGateApplicationTests.java new file mode 100644 index 0000000..1a8f4c5 --- /dev/null +++ b/src/test/java/com/example/baisgate/BaisGateApplicationTests.java @@ -0,0 +1,12 @@ +package com.example.baisgate; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class BaisGateApplicationTests { + + @Test + void contextLoads() { + } +} \ No newline at end of file -- 2.49.1