Reviewer 역할 검증 보고서 smoke (runtime-role-matrix-live-20260714101723-v7-reviewer-001)
Some checks failed
ci / test (pull_request) Failing after 1m9s

This commit is contained in:
forge-bot 2026-07-14 10:29:51 +00:00
parent ab42d41baa
commit d7999e2291

49
pom.xml
View file

@ -3,37 +3,54 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>com.klaroworks</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>developer-role-smoke</artifactId>
<version>3.2.5</version> <version>1.0.0-SNAPSHOT</version>
<relativePath/>
</parent> </parent>
<groupId>com.example</groupId>
<artifactId>developer-role-smoke</artifactId> <artifactId>developer-role-smoke</artifactId>
<version>1.0.0</version> <version>1.0.0-SNAPSHOT</version>
<name>Developer Role Smoke Test</name> <packaging>jar</packaging>
<description>Spring Boot smoke application for Developer role</description>
<name>Developer Role Smoke</name>
<description>Runtime role matrix for developer role validation</description>
<properties> <properties>
<java.version>17</java.version> <maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>5.10.0</junit.version>
</properties> </properties>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>spring-boot-starter</artifactId> <artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>spring-boot-starter-test</artifactId> <artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.springframework.boot</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>spring-boot-maven-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>