diff --git a/.forge/role-developer-reverify-001-attempt-1-run-91dbb119003d.md b/.forge/role-developer-reverify-001-attempt-1-run-91dbb119003d.md
new file mode 100644
index 0000000..86eddda
--- /dev/null
+++ b/.forge/role-developer-reverify-001-attempt-1-run-91dbb119003d.md
@@ -0,0 +1,3 @@
+# role-developer-reverify-001-attempt-1-run-91dbb119003d
+
+Forge 이슈 작업 브랜치 `forge/role-developer-reverify-001-attempt-1-run-91dbb119003d`.
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..35654ff
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,45 @@
+
+
+ 4.0.0
+
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 3.3.0
+
+
+
+ com.example
+ spring-minimal
+ 1.0.0
+ jar
+ Spring Minimal Application
+ Minimum compilable Spring Boot application skeleton
+
+
+ 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/SpringMinimalApplication.java b/src/main/java/com/example/SpringMinimalApplication.java
new file mode 100644
index 0000000..92bee90
--- /dev/null
+++ b/src/main/java/com/example/SpringMinimalApplication.java
@@ -0,0 +1,12 @@
+package com.example;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class SpringMinimalApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(SpringMinimalApplication.class, args);
+ }
+}
diff --git a/src/main/java/com/example/controller/HealthController.java b/src/main/java/com/example/controller/HealthController.java
new file mode 100644
index 0000000..fcdbc96
--- /dev/null
+++ b/src/main/java/com/example/controller/HealthController.java
@@ -0,0 +1,23 @@
+package com.example.controller;
+
+import org.springframework.http.ResponseEntity;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import java.util.Map;
+
+@RestController
+@RequestMapping("/api")
+public class HealthController {
+
+ @GetMapping("/health")
+ public ResponseEntity