maven 학습 1

Maven 이 신 났 다 고 들 었 어 요. 공부 도 하고.
다운로드, 설치, 말 안 할 게 요. 인터넷 에 자료 가 많아 요.
maven 2 설정 파일 은 두 개의 pom. xml settings. xml 입 니 다.
pom. xml 파일 의 역할 은 무엇 입 니까?pom --- project object model 프로젝트 대상 모델
제 이 해 는 이 렇 습 니 다. 하나의 항목 은 pom. xml 에 대응 합 니 다. 이 항목 을 묘사 하 는 것 입 니 다. 프로젝트 의 속성 을 설명 하 는 것 입 니까?pom. xml 파일 을 보고 감성 적 인 인식 을 해 보도 록 하 겠 습 니 다.
<project>  //   
  <modelVersion>4.0.0</modelVersion> 

  <!-- The Basics -->
  <groupId>...</groupId> //                        , org.codehaus.mojo        :/org/codehaus/mojo 
  <artifactId>...</artifactId> //       
  <version>...</version>  //     
  <packaging>...</packaging>     
  <dependencies>...</dependencies>                  :          
  <parent>...</parent>        ,
  <dependencyManagement>...</dependencyManagement>  
  <modules>...</modules>                      
  <properties>...</properties>

  <!-- Build Settings -->
  <build>...</build>              build   profile build
  <reporting>...</reporting>     site      。   maven                。    


  <!-- More Project Information -->
  <name>...</name> :    artifactId ,        
  <description>...</description>     
  <url>...</url>   url
  <inceptionYear>...</inceptionYear>     
  <licenses>...</licenses>
  <organization>...</organization>     
  <developers>...</developers>        
  <contributors>...</contributors>           

  <!-- Environment Settings -->
  <issueManagement>...</issueManagement>
  <ciManagement>...</ciManagement> Continuous Integration Management      
  <mailingLists>...</mailingLists>      
  <scm>...</scm>       , cvs  svn
  <prerequisites>...</prerequisites>
  <repositories>...</repositories>   settings.xml
  <pluginRepositories>...</pluginRepositories>
  <distributionManagement>...</distributionManagement>     
  <profiles>...</profiles> 
</project>

설정 정보 가 너무 많아 서 어 지 러 워 요.
참고 하 다
http://www.javaresearch.org/article/61260.htm

좋은 웹페이지 즐겨찾기