Spring Boot 최소 전환 단위 구현 #4

Merged
forge-bot merged 4 commits from forge/BAIS-NATIVE-1783698057-attempt-1 into main 2026-07-10 15:43:36 +00:00
4 changed files with 68 additions and 0 deletions

View file

@ -0,0 +1,3 @@
# BAIS-NATIVE-1783698057-attempt-1
Forge 이슈 작업 브랜치 `forge/BAIS-NATIVE-1783698057-attempt-1`.

42
pom.xml Normal file
View file

@ -0,0 +1,42 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>bais-gate-e2e</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.5</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<java.version>17</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>

View file

@ -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);
}
}

View file

@ -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() {
}
}