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/pom.xml b/pom.xml new file mode 100644 index 0000000..bbdc162 --- /dev/null +++ b/pom.xml @@ -0,0 +1,39 @@ + + + 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 new file mode 100644 index 0000000..2a9bdbe --- /dev/null +++ b/src/main/java/com/example/demo/DemoApplication.java @@ -0,0 +1,12 @@ +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 new file mode 100644 index 0000000..33406d2 --- /dev/null +++ b/src/main/resources/application.properties @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..a7f0419 --- /dev/null +++ b/src/test/java/com/example/demo/DemoApplicationTests.java @@ -0,0 +1,14 @@ +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() { + } +}