Skip to content

Commit

Permalink
1. 개발 > Spring Boot > Spring Boot + Maven 환경에서 커스텀 빌드하기 (4) 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
readra committed Aug 22, 2024
1 parent b4b0a1b commit 9e53765
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions _pages/개발/Spring Boot/maven-custom-build4.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,23 @@ thumbnail: "/assets/img/thumbnail/custom3.webp"
<version>3.3.0</version>
</dependency>
```
빌드 시, 특정 클래스의 main() 함수를 실행시키고 싶을 때 사용한다.
빌드 시, 특정 클래스의 main() 함수를 실행시키기 위해 사용한다.
```xml
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.2.1</version>
</dependency>
```
빌드 시, 특정 파일 기준으로 properties 읽고 싶을 때 사용한다. 버전 표시용
빌드 시, 특정 파일 기준으로 properties 읽기 위해 사용한다. 버전 표시용
```xml
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.3.0</version>
</dependency>
```
빌드 시, 커스터마이징 코드를 추가적으로 빌드에 포함시키기 위해 사용한다.

### 일반 빌드

Expand Down

0 comments on commit 9e53765

Please sign in to comment.