pom file의 구조
proejct meta data
project name , version, ouput file type(JAR,WAR) ,
[groupId , artifactId , version 은 일종의 주소와 같은 것 들이다.]
GroupId - 보통 조직의 이름 역순으로 한다. com.naver 과 같이.
ArtifactId - project의 이름이다.
Version - 릴리즈의 버전 (optional)
-> G A V
dependencies
depend하는 list of project -> Spring , Hibernate,etc...
<dependencies>
와 </dependencies>
사이
plug ins
추가적인 custom task -> Juint test report 생성 , etc...