pom.xml

Chang Hyeon Kim·2023년 3월 22일
0

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...

profile
생각을 구현 하자

0개의 댓글