버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

...

Maven POM에 dependency를 추가할 때 다음과 같은 형식으로 추가합니다.

코드 블럭
languagebashxml
linenumberstrue
<dependency>
    <groupId>group-a</groupId>
    <artifactId>artifact-b</artifactId>
    <version>1.0</version>
    <type>bar</type>
    <scope>runtime</scope>
</dependency>

...