diff --git a/.forge/role-developer-reverify-550-001-attempt-1-run-41adeb6fc379.md b/.forge/role-developer-reverify-550-001-attempt-1-run-41adeb6fc379.md
deleted file mode 100644
index 4d96a47..0000000
--- a/.forge/role-developer-reverify-550-001-attempt-1-run-41adeb6fc379.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# role-developer-reverify-550-001-attempt-1-run-41adeb6fc379
-
-Forge 이슈 작업 브랜치 `forge/role-developer-reverify-550-001-attempt-1-run-41adeb6fc379`.
diff --git a/.forge/role-developer-reverify-550-001-attempt-2-run-b7030f4f44ff.md b/.forge/role-developer-reverify-550-001-attempt-2-run-b7030f4f44ff.md
new file mode 100644
index 0000000..84e78aa
--- /dev/null
+++ b/.forge/role-developer-reverify-550-001-attempt-2-run-b7030f4f44ff.md
@@ -0,0 +1,3 @@
+# role-developer-reverify-550-001-attempt-2-run-b7030f4f44ff
+
+Forge 이슈 작업 브랜치 `forge/role-developer-reverify-550-001-attempt-2-run-b7030f4f44ff`.
diff --git a/.forge/role-reviewer-reverify-550-001-attempt-2-run-bec68005cd80.md b/.forge/role-reviewer-reverify-550-001-attempt-2-run-bec68005cd80.md
new file mode 100644
index 0000000..ef1e0c5
--- /dev/null
+++ b/.forge/role-reviewer-reverify-550-001-attempt-2-run-bec68005cd80.md
@@ -0,0 +1,3 @@
+# role-reviewer-reverify-550-001-attempt-2-run-bec68005cd80
+
+Forge 이슈 작업 브랜치 `forge/role-reviewer-reverify-550-001-attempt-2-run-bec68005cd80`.
diff --git a/pom.xml b/pom.xml
index f54ffa9..bbdc162 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,34 +1,26 @@
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
-
org.springframework.boot
spring-boot-starter-parent
3.2.5
-
com.example
- spring-boot-minimal
- 1.0.0
- jar
- Spring Boot Minimal Application
- Minimum compilable Spring Boot application for reviewer verification
-
+ demo
+ 0.0.1-SNAPSHOT
+ demo
+ Spring Boot 3.x Demo Application
17
- 17
- 17
- UTF-8
-
org.springframework.boot
- spring-boot-starter-web
+ spring-boot-starter
org.springframework.boot
@@ -36,18 +28,12 @@
test
-
org.springframework.boot
spring-boot-maven-plugin
-
- org.apache.maven.plugins
- maven-surefire-plugin
- 3.2.5
-
\ No newline at end of file
diff --git a/src/main/java/com/example/SpringBootMinimalApplication.java b/src/main/java/com/example/SpringBootMinimalApplication.java
deleted file mode 100644
index 7962d79..0000000
--- a/src/main/java/com/example/SpringBootMinimalApplication.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package com.example;
-
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-
-/**
- * Main Spring Boot application entry point.
- * This is the minimum required class to bootstrap a Spring application.
- */
-@SpringBootApplication
-public class SpringBootMinimalApplication {
-
- public static void main(String[] args) {
- SpringApplication.run(SpringBootMinimalApplication.class, args);
- }
-}
diff --git a/src/main/java/com/example/controller/HealthController.java b/src/main/java/com/example/controller/HealthController.java
deleted file mode 100644
index 7a9047c..0000000
--- a/src/main/java/com/example/controller/HealthController.java
+++ /dev/null
@@ -1,26 +0,0 @@
-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;
-
-/**
- * Simple REST controller for health check endpoint.
- */
-@RestController
-@RequestMapping("/api")
-public class HealthController {
-
- @GetMapping("/health")
- public ResponseEntity