maven项目的pom文件中常用的简单的标签理解

maven的pom文件一些标签的理解

在本篇文章中,我只是将pom文件中的一些常用的并且比较简单的标签理解标记注释了。还有很多并常用但是也很重要的这里并没有列出。因为本人水平也有限的,所以请谅解。

  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

 
  4.0.0

 
  xia.testHuaWei

 
  test_web

 
  war

 
  0.0.1-SNAPSHOT


 
  test_web Maven Webapp
 
  http://maven.apache.org
 
  A maven project to study pom of maven

 
 
   
 

 
 
   
      junit
      junit
      3.8.1
      test
   

 

 

 
 
   
    test_web

   
   
       
           
            src/mian/resources
           
           
                **/*.properties
                **/*.xml
           

               
             
                jdbc.properties  
           
 

       

   

 

 

 

你可能感兴趣的:(maven)