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 deleted file mode 100644 index 84e78aa..0000000 --- a/.forge/role-developer-reverify-550-001-attempt-2-run-b7030f4f44ff.md +++ /dev/null @@ -1,3 +0,0 @@ -# role-developer-reverify-550-001-attempt-2-run-b7030f4f44ff - -Forge 이슈 작업 브랜치 `forge/role-developer-reverify-550-001-attempt-2-run-b7030f4f44ff`. diff --git a/pom.xml b/pom.xml deleted file mode 100644 index bbdc162..0000000 --- a/pom.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-starter-parent - 3.2.5 - - - com.example - demo - 0.0.1-SNAPSHOT - demo - Spring Boot 3.x Demo Application - - 17 - - - - org.springframework.boot - spring-boot-starter - - - 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/demo/DemoApplication.java b/src/main/java/com/example/demo/DemoApplication.java deleted file mode 100644 index 2a9bdbe..0000000 --- a/src/main/java/com/example/demo/DemoApplication.java +++ /dev/null @@ -1,12 +0,0 @@ -package com.example.demo; - -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; - -@SpringBootApplication -public class DemoApplication { - - public static void main(String[] args) { - SpringApplication.run(DemoApplication.class, args); - } -} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties deleted file mode 100644 index 33406d2..0000000 --- a/src/main/resources/application.properties +++ /dev/null @@ -1 +0,0 @@ -spring.main.banner-mode=off diff --git a/src/test/java/com/example/demo/DemoApplicationTests.java b/src/test/java/com/example/demo/DemoApplicationTests.java deleted file mode 100644 index a7f0419..0000000 --- a/src/test/java/com/example/demo/DemoApplicationTests.java +++ /dev/null @@ -1,14 +0,0 @@ -package com.example.demo; - -import org.junit.jupiter.api.Test; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.TestPropertySource; - -@SpringBootTest -@TestPropertySource(properties = {"spring.main.banner-mode=off"}) -class DemoApplicationTests { - - @Test - void contextLoads() { - } -}