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`. 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 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 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